1) Create s3 bucket - # aws --endpoint-url=http://localhost:4566 s3 mb s3://my-test-bucket 2) List s3 buckets - # aws --endpoint-url="http://localhost:4566" s3 ls 3) Upload file on s3 bucket - # aws --endpoint-url="http://localhost:4566" s3 sync "myfiles" s3://my-test-bucket 4) List files from AWS CLI - # aws --endpoint-url="http://localhost:4566" s3 ls s3://my-test-bucket 6) Access file via URL(File name was download.jpg) - # http://localhost:4566/my-test-bucket/download.jpg 7) Delete object from bucket - # aws --endpoint-url=http://localhost:4566 s3api delete-object --bucket --key 8) Create bucket notification configuration - # aws --endpoint-url=http://localhost:4566 s3api put-bucket-notification-configuration --bucket --notification-configuration file://.json 9) Get bucket notification configuration - # aws --endpoint-url=http://localhost:4566 s3api get-bucket-notification-configuration --bucket 10) Set bucket policy - # aws --endpoint-url=http://localhost:4566 s3api put-bucket-policy --bucket --policy file://.json 10) Get bukcet policy - # aws --endpoint-url=http://localhost:4566 s3api get-bucket-policy --bucket