Bird
0
0

Given this lifecycle rule JSON snippet, what will happen to objects older than 60 days?

medium📝 Predict Output Q13 of 15
AWS - Cost Optimization
Given this lifecycle rule JSON snippet, what will happen to objects older than 60 days?
{"Rules": [{"Status": "Enabled", "Transitions": [{"Days": 30, "StorageClass": "STANDARD_IA"}, {"Days": 60, "StorageClass": "GLACIER"}]}]}
AObjects older than 60 days will be deleted automatically.
BObjects older than 60 days will remain in STANDARD_IA storage class.
CObjects older than 60 days will be moved to GLACIER storage class.
DObjects older than 60 days will be moved back to STANDARD storage class.
Step-by-Step Solution
Solution:
  1. Step 1: Analyze the lifecycle transitions

    The rule transitions objects to STANDARD_IA after 30 days, then to GLACIER after 60 days.
  2. Step 2: Determine final storage class after 60 days

    Objects older than 60 days will be moved to GLACIER, which is a colder, cheaper storage class.
  3. Final Answer:

    Objects older than 60 days will be moved to GLACIER storage class. -> Option C
  4. Quick Check:

    Lifecycle transitions move objects to GLACIER after 60 days = A [OK]
Quick Trick: Check the last transition day and storage class [OK]
Common Mistakes:
  • Thinking objects stay in STANDARD_IA after 60 days
  • Confusing transition with deletion
  • Assuming objects move back to STANDARD

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes