Complete the code to specify the S3 storage class for an object upload.
aws s3 cp file.txt s3://mybucket/ --storage-class [1]
The STANDARD storage class is the default and suitable for frequently accessed data.
Complete the code to set lifecycle rule to transition objects to Glacier after 30 days.
"Transitions": [{"Days": [1], "StorageClass": "GLACIER"}]
Objects are transitioned to Glacier after 30 days as specified by the Days value.
Fix the error in the lifecycle policy JSON to correctly specify the expiration in days.
"Expiration": {"Days": [1]
The Days value must be an integer, not a string or null.
Fill both blanks to create a lifecycle rule that transitions to STANDARD_IA after 60 days and expires after 365 days.
"Transitions": [{"Days": [1], "StorageClass": "STANDARD_IA"}], "Expiration": {"Days": [2]
The rule transitions objects to STANDARD_IA after 60 days and expires them after 365 days.
Fill all three blanks to define a lifecycle rule that transitions to ONEZONE_IA after 30 days, then to GLACIER after 90 days, and expires after 365 days.
"Transitions": [{"Days": [1], "StorageClass": "ONEZONE_IA"}, {"Days": [2], "StorageClass": "GLACIER"}], "Expiration": {"Days": [3]
This lifecycle rule moves objects to ONEZONE_IA after 30 days, then to GLACIER after 90 days, and finally expires them after 365 days.