0
Uncategorized

1) To create S3 Bucket
aws s3 mb s3://your_unique_bucket_name
2) List all AWS S3 Bucket
aws s3 ls

3) Copy a single file from the local system to cloud-based AWS S3 Bucketsaws
aws s3 cp D:\Computer.jpg s3://your_bucket_name

4) Copy multiple files from the local system to cloud-based AWS S3 Buckets
put the files you want to upload in a directory and then all the files
from the directory will be uploaded.

aws s3 cp directory_path s3://your_bucket_name --recursive

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Posts