S3 Buckets
Create bucket
aws s3api create-bucket --bucket muses --region eu-central-1 --create-bucket-configuration LocationConstraint=eu-central-1
List all buckets
aws s3 ls
List files in a bucket
aws s3 ls s3://muses
Sync all files in a directory with public read permissions
aws s3 sync . s3://muses --acl public-read
Last updated
Was this helpful?