Bird
0
0

Given this lifecycle rule snippet, what happens to objects after 30 days?

medium📝 service behavior Q4 of 15
AWS - S3 Fundamentals
Given this lifecycle rule snippet, what happens to objects after 30 days?
{
  "Rules": [{
    "Status": "Enabled",
    "Expiration": {"Days": 30}
  }]
}
AObjects are archived to Deep Archive after 30 days
BObjects are moved to Glacier after 30 days
CObjects remain unchanged after 30 days
DObjects are deleted after 30 days
Step-by-Step Solution
Solution:
  1. Step 1: Analyze the "Expiration" field

    The rule specifies expiration after 30 days, meaning objects are deleted then.
  2. Step 2: Confirm no transition specified

    Since no transition action is present, objects are not moved to Glacier or Deep Archive.
  3. Final Answer:

    Objects are deleted after 30 days -> Option D
  4. Quick Check:

    Expiration Days = object deletion timing [OK]
Quick Trick: Expiration Days means delete after that many days [OK]
Common Mistakes:
  • Assuming objects move to Glacier without transition
  • Thinking objects remain after expiration
  • Confusing expiration with archiving

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes