Complete the code to list all S3 buckets using AWS CLI.
aws s3 [1]The ls command lists all S3 buckets in your AWS account.
Complete the code to start an EC2 instance with a specific instance ID.
aws ec2 [1] --instance-ids i-1234567890abcdef0
The start-instances command starts a stopped EC2 instance.
Fix the error in the command to copy a file to an S3 bucket.
aws s3 [1] myfile.txt s3://mybucket/The cp command copies files to or from S3 buckets.
Fill both blanks to describe EC2 instances filtered by state 'running'.
aws ec2 [1] --filters Name=instance-state-name,Values=[2]
The describe-instances command shows details of instances. Filtering by running shows only active instances.
Fill all three blanks to copy a directory recursively to an S3 bucket with verbose output.
aws s3 [1] myfolder s3://mybucket/ --[2] --[3]
The cp command copies files. The recursive option copies all files in folders. The verbose option shows details during the copy.
