> For the complete documentation index, see [llms.txt](https://aloy.gitbook.io/notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aloy.gitbook.io/notes/cloud/aws/aws-cli.md).

# aws-cli

```bash
# 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

```
