AWS command line interface (CLI) allow users to download or upload files to your S3 bucket in batch mode. Instructions on how to install the AWS CLI is shown below, note that this is different for different operating systems.
Linux–
Windows–
MacOS–
Users can verify if the AWS CLI has been installed properly by runningaws --version.
Set up the configuration file
After the software has been installed, users need to create the configuration file using the template below:
Type aws configure:
$ aws configureAWS Access Key ID: access_key_ID ### input user's key ID here (the key generated in section 1.2) AWS Secret Access Key: secret_access_key ### input user's access key (the key generated in section 1.2)Default region name: us-east-1 ### input the closet geographical location here
Users can verify the contents of the aws configure file by typing "aws configure list".