AWS - S3 FundamentalsWhich of the following is the correct way to specify the STANDARD_IA storage class in an AWS CLI command to upload a file?Aaws s3 cp file.txt s3://bucket/ --storage-class=STANDARDIABaws s3 cp file.txt s3://bucket/ --storageclass STANDARD_IACaws s3 cp file.txt s3://bucket/ --storage-class STANDARD_IADaws s3 cp file.txt s3://bucket/ --storage-class=STANDARD-IACheck Answer
Step-by-Step SolutionSolution:Step 1: Recall AWS CLI syntax for storage classThe correct option uses '--storage-class' with underscore and exact class name.Step 2: Check each option for syntax errorsaws s3 cp file.txt s3://bucket/ --storage-class STANDARD_IA matches correct syntax; others have typos or wrong format.Final Answer:aws s3 cp file.txt s3://bucket/ --storage-class STANDARD_IA -> Option CQuick Check:Correct flag and class name = aws s3 cp file.txt s3://bucket/ --storage-class STANDARD_IA [OK]Quick Trick: Use '--storage-class' exactly with underscore [OK]Common Mistakes:MISTAKESMisspelling the flag as '--storageclass'Using dashes instead of underscoresOmitting the space after the flag
Master "S3 Fundamentals" in AWS9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More AWS Quizzes AWS Account and Billing - Setting up billing alerts - Quiz 2easy AWS Account and Billing - Why account management matters - Quiz 9hard AWS Account and Billing - Free tier usage monitoring - Quiz 11easy AWS CLI - Using profiles for multiple accounts - Quiz 12easy Cloud Computing Fundamentals - What is cloud computing - Quiz 11easy Cloud Computing Fundamentals - What is cloud computing - Quiz 3easy EC2 Fundamentals - Elastic IP addresses - Quiz 4medium Identity and Access Management - IAM users and groups - Quiz 4medium Identity and Access Management - Why IAM is foundational - Quiz 11easy VPC Fundamentals - Public vs private subnets - Quiz 1easy