AWS CLi
AWS CLi
Usage
The AWS Command Line Interface User Guide walks you through installing and
configuring the tool. After that, you can begin making calls to your AWS services
from the command line.
$ aws ec2 describe-instances
You can get help on the command line to see the supported services,
$ aws help
PRE myfolder/
You can perform recursive uploads and downloads of multiple files in a single
folder-level command. The AWS CLI will run these transfers in parallel for
increased performance.
$ aws s3 cp myfolder s3://mybucket/myfolder --recursive
A sync command makes it easy to synchronize the contents of a local folder with a
copy in an S3 bucket.
$ aws s3 sync myfolder s3://mybucket/myfolder --exclude *.tmp
Supported Services