Complete the code to set the AWS CLI output format to JSON.
aws configure set output [1]The command sets the AWS CLI output format to JSON, which is a structured data format.
Complete the code to display AWS CLI output in a table format.
aws s3 ls --output [1]The --output table option formats the AWS CLI output as a readable table.
Fix the error in the command to output AWS CLI results as plain text.
aws ec2 describe-instances --output [1]The text output format shows the AWS CLI results as plain text, suitable for simple reading or scripting.
Fill both blanks to configure AWS CLI to output in JSON and then list S3 buckets.
aws configure set output [1] aws s3 ls --output [2]
Both commands use JSON format for output, which is structured and easy to parse.
Fill all three blanks to set AWS CLI output to table, list EC2 instances in table format, and then switch output to text.
aws configure set output [1] aws ec2 describe-instances --output [2] aws s3 ls --output [3]
The first two commands use table format for readable output, and the last command uses text format for simple listing.