Question 215 of 1,786
Data Store ManagementmediumMultiple ChoiceObjective-mapped

Quick Answer

The answer is that the object has not yet reached the transition age of 30 days. S3 lifecycle transitions are calculated strictly from the object’s LastModified date, not from its creation date or any other timestamp. In this scenario, the object was created on January 1, 2023, but the current date implied by the command output is January 21, 2023—meaning the object is only 20 days old, which falls short of the 30-day threshold required to move from STANDARD_IA to Glacier Instant Retrieval. On the AWS Certified Data Engineer Associate DEA-C01 exam, this concept tests your understanding that S3 lifecycle policies operate on elapsed time since the LastModified date, and a common trap is assuming the transition triggers immediately upon reaching the day count. A frequent distractor involves confusing the object’s age with the policy’s “Days after object creation” setting. Remember the memory tip: “LastModified is the clock—30 days means 30 full days from that timestamp, not from when you uploaded it.”

DEA-C01 Data Store Management Practice Question

This DEA-C01 practice question tests your understanding of data store management. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Network Topology
$ aws s3api head-objectbucket my-data-lakekey logs/2023/01/01/app.logRefer to the exhibit."LastModified": "2023-01-02T00:00:00Z","ContentLength": 1048576,"ETag": "\"abc123def456\"","VersionId": "null","ContentType": "application/octet-stream","Metadata": {"x-amz-meta-original-timestamp": "2023-01-01T12:00:00Z"},"StorageClass": "STANDARD_IA","Restore": "ongoing-request="false""

A data engineer runs the above AWS CLI command and receives the output. The object is part of an S3 Lifecycle policy that transitions objects to Glacier Instant Retrieval after 30 days. The object was created on January 1, 2023. Why is the object still in STANDARD_IA storage class?

Question 1mediummultiple choice
Full question →
Network Topology
$ aws s3api head-objectbucket my-data-lakekey logs/2023/01/01/app.logRefer to the exhibit."LastModified": "2023-01-02T00:00:00Z","ContentLength": 1048576,"ETag": "\"abc123def456\"","VersionId": "null","ContentType": "application/octet-stream","Metadata": {"x-amz-meta-original-timestamp": "2023-01-01T12:00:00Z"},"StorageClass": "STANDARD_IA","Restore": "ongoing-request="false""

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The object has not reached the transition age of 30 days yet

Option C is correct because the S3 Lifecycle rule transitions objects to Glacier Instant Retrieval after 30 days, but the object was created on January 1, 2023, and the current date (implied by the command output) is before January 31, 2023. The transition age is calculated from the object's LastModified date, not from any other timestamp, and the object must be at least 30 days old before S3 applies the transition. Since the object is only 20 days old (as of January 21, 2023, based on the output showing STANDARD_IA), it has not yet met the 30-day threshold.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The Lifecycle policy has a filter that excludes this object's prefix

    Why it's wrong here

    The command shows the object is in the logs/ prefix, which is likely included.

  • Versioning is enabled and the current version is not the oldest

    Why it's wrong here

    VersionId is null, so versioning is not enabled.

  • The object has not reached the transition age of 30 days yet

    Why this is correct

    The LastModified is Jan 2, so as of Jan 3, it is only 1 day old.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The metadata timestamp is used for lifecycle transitions instead of LastModified

    Why it's wrong here

    Lifecycle policies use the object's LastModified date, not custom metadata.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates assume the object's current storage class (STANDARD_IA) means the 30-day transition to Glacier Instant Retrieval has already failed or been misconfigured, when in fact the object simply hasn't aged enough yet.

Trap categories for this question

  • Command / output trap

    The command shows the object is in the logs/ prefix, which is likely included.

Detailed technical explanation

How to think about this question

S3 Lifecycle transitions use the object's LastModified date as the starting point for age calculations, and the transition occurs asynchronously — typically within 24 hours after the object reaches the specified age. In this scenario, the object was created on January 1, 2023, and the transition to STANDARD_IA (which occurs before the 30-day Glacier Instant Retrieval transition) has already happened, but the 30-day threshold for Glacier Instant Retrieval has not yet been reached. A common real-world scenario is when objects are created mid-month and engineers expect immediate transitions, forgetting that lifecycle rules are based on calendar days from LastModified.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related DEA-C01 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free DEA-C01 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this DEA-C01 question test?

Data Store Management — This question tests Data Store Management — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: The object has not reached the transition age of 30 days yet — Option C is correct because the S3 Lifecycle rule transitions objects to Glacier Instant Retrieval after 30 days, but the object was created on January 1, 2023, and the current date (implied by the command output) is before January 31, 2023. The transition age is calculated from the object's LastModified date, not from any other timestamp, and the object must be at least 30 days old before S3 applies the transition. Since the object is only 20 days old (as of January 21, 2023, based on the output showing STANDARD_IA), it has not yet met the 30-day threshold.

What should I do if I get this DEA-C01 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More DEA-C01 practice questions

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This DEA-C01 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DEA-C01 exam.