Your AWS Cloud9 Environment should be ready. Now, you can become familiar with the environment, learn about the AWS CLI, and use the AWS CLI to create an Amazon S3 bucket. This S3 bucket is used in the next module.
The AWS Cloud9 IDE is similar to a traditional IDE you can find on virtually any system. It comprises the following components:
AWS Cloud9 also includes the latest version of AWS CLI, but it is always a good practice to verify you are using the latest version. You can verify the AWS CLI version by following the next section.
The AWS CLI allows you to manage services using the command line and control services through scripts. Many users choose to conduct some level of automation using the AWS CLI.
Use the copy button in each of the following code samples to quickly copy the command to your clipboard.
In your AWS Cloud9 terminal window paste the following commands
To make sure you have AWS CLI version 2.x. You will first uninstall any existing AWS CLI.
sudo pip uninstall -y awscli
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
. ~/.bash_profile
aws --version
sudo yum install -y jq