aws-cli

# install aws cli
pip install awscli

# see configured
aws configure list

# configure if not yet configured ,
# prompt to configure accessKey, secretKey, region(eg.ap-southeast-1)
aws configure

# see all s3 bucket
aws s3 ls

# see contents of specific s3 bucket
aws s3 ls bucketOne

Last updated