0
0
AWScloud~10 mins

S3 storage classes (Standard, IA, Glacier) in AWS - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the S3 storage class for standard storage.

AWS
aws s3 cp file.txt s3://mybucket/ --storage-class [1]
Drag options to blanks, or click blank then click option'
AONEZONE_IA
BGLACIER
CREDUCED_REDUNDANCY
DSTANDARD
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing GLACIER for frequently accessed data causes slow retrieval.
2fill in blank
medium

Complete the code to specify the S3 storage class for infrequent access.

AWS
aws s3 cp file.txt s3://mybucket/ --storage-class [1]
Drag options to blanks, or click blank then click option'
AONEZONE_IA
BGLACIER
CSTANDARD_IA
DSTANDARD
Attempts:
3 left
💡 Hint
Common Mistakes
Using GLACIER instead causes longer retrieval times.
3fill in blank
hard

Fix the error in the storage class name to use Glacier archival storage.

AWS
aws s3 cp file.txt s3://mybucket/ --storage-class [1]
Drag options to blanks, or click blank then click option'
AGLACIER
BSTANDARD_IA
CGLACIER_IR
DONEZONE_IA
Attempts:
3 left
💡 Hint
Common Mistakes
Using GLACIER_IR when standard Glacier is required.
4fill in blank
hard

Fill both blanks to set the storage class to One Zone-Infrequent Access and enable encryption.

AWS
aws s3 cp file.txt s3://mybucket/ --storage-class [1] --sse [2]
Drag options to blanks, or click blank then click option'
AONEZONE_IA
BAES256
CSTANDARD_IA
Daws:kms
Attempts:
3 left
💡 Hint
Common Mistakes
Using STANDARD_IA instead of ONEZONE_IA or wrong encryption flag.
5fill in blank
hard

Fill all three blanks to copy a file to Glacier storage with KMS encryption and specify the storage class.

AWS
aws s3 cp file.txt s3://mybucket/ --sse [1] --storage-class [2] --metadata-directive [3]
Drag options to blanks, or click blank then click option'
Aaws:kms
BGLACIER
CREPLACE
DAES256
Attempts:
3 left
💡 Hint
Common Mistakes
Using AES256 instead of aws:kms or missing metadata directive.