nerdexam
Amazon

SAA-C03 · Question #573

A media company stores customer-uploaded videos in an Amazon S3 bucket with the Standard storage class. The company wants to create an S3 Lifecycle configuration. The company will set the maximum…

The correct answer is A. Create a single S3 Lifecycle configuration that has two rules. Configure the first rule to expire. Amazon S3 supports one Lifecycle configuration per bucket that can contain multiple rules. Lifecycle rules can include filters, including object size filters: ObjectSizeGreaterThan and ObjectSizeLessThan. You can combine rules so that one targets large objects and another…

Submitted by minji_kr· Mar 4, 2026Design Cost-Optimized Architectures

Question

A media company stores customer-uploaded videos in an Amazon S3 bucket with the Standard storage class. The company wants to create an S3 Lifecycle configuration. The company will set the maximum retention time to 7 days. However, the configuration must delete any video that is more than 1 TB in size after 48 hours. Which solution will meet this requirement?

Options

  • ACreate a single S3 Lifecycle configuration that has two rules. Configure the first rule to expire
  • BCreate two S3 Lifecycle configurations. Include a rule in the first configuration to expire objects
  • CCreate a single S3 Lifecycle configuration that has two rules. Configure the first rule to expire
  • DCreate two S3 Lifecycle configurations. Include a rule in the first configuration to expire objects

How the community answered

(22 responses)
  • A
    82% (18)
  • B
    5% (1)
  • C
    9% (2)
  • D
    5% (1)

Explanation

Amazon S3 supports one Lifecycle configuration per bucket that can contain multiple rules. Lifecycle rules can include filters, including object size filters: ObjectSizeGreaterThan and ObjectSizeLessThan. You can combine rules so that one targets large objects and another provides a default expiration. Here, configure Rule 1 with a size filter ObjectSizeGreaterThan = 1 TB and Expiration = 2 days (48 hours) to purge very large videos early. Configure Rule 2 with Expiration = 7 days without a size filter to serve as a catch-all maximum retention for all objects. Options B and D are invalid because S3 does not allow multiple Lifecycle configurations per bucket. Option C cannot distinguish large files; it would delete all files at the same schedule without honoring the 48-hour policy for >1 TB objects. This single configuration with two rules meets both retention targets with minimal overhead and full S3-native capability.

Community Discussion

No community discussion yet for this question.

Full SAA-C03 Practice