AWS CLI
- You can interact with AWS from anywhere in the world just by using the command line (CLI).
- You will need to setup access in IAM.
- Commands themselves are not in the exam, but some basic commands will be useful to know for real life.
S3
aws s3 cp test.txt s3://mybucket/test2.txt
aws s3 mb s3://mynewbucket --region us-east-1
aws s3 ls
- lists all the buckets
aws s3 sync
- syncs the delta between a local directory and a destination bucket
aws s3 sync --delete
- synchronizes a full copy (including any deletions in the target)
Dynamo DB
aws dynamodb scan \
--table-name Places