AWS CLI

Installation

You can dowload it from here: https://aws.amazon.com/cli/

https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html

How to check if you have it installed already?

aws --version

Help

aws help
aws s3 help

Configure

aws configure --profile default
export AWS_ACCESS_KEY_ID="test"
export AWS_SECRET_ACCESS_KEY="test"
export AWS_DEFAULT_REGION="us-east-1"

Verify the current configuration:

aws configure list