AWS - CLI
What will be the output of this AWS CLI command?
aws s3api list-buckets --query 'Buckets[].Name' --output json
aws s3api list-buckets --query 'Buckets[].Name' --output json
list-buckets to get all buckets, with a query to extract only the bucket names.--output json option formats the result as JSON, so the output is a JSON array of bucket names.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions