Complete the code to create a new S3 bucket named 'my-bucket'.
aws s3api create-bucket --bucket [1] --region us-east-1
The bucket name must be unique and is specified with the --bucket option.
Complete the code to upload a file named 'photo.jpg' to the bucket 'my-bucket'.
aws s3 cp photo.jpg s3://[1]/The bucket name follows s3:// to specify where the file will be uploaded.
Fix the error in the command to list all objects in the bucket 'my-bucket'.
aws s3api list-objects --bucket [1]The bucket name must exactly match the existing bucket to list its objects.
Fill both blanks to copy the object 'document.txt' from 'source-bucket' to 'destination-bucket'.
aws s3 cp s3://[1]/document.txt s3://[2]/
The source bucket is where the object currently is, and the destination bucket is where it will be copied.
Fill all three blanks to delete the object 'oldfile.txt' from the bucket 'archive-bucket' using AWS CLI.
aws s3api delete-object --bucket [1] --key [2] --region [3]
The bucket name, object key (file name), and region must be specified to delete the object correctly.