
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
A company sells ringtones created from clips of popular songs. The files containing the ringtones are stored in Amazon S3 Standard and are at least 128 KB in size. The company has millions of files, but downloads are infrequent for ringtones older than 90 days. The company needs to save money on storage while keeping the most accessed files readily available for its users.
Which action should the company take to meet these requirements MOST cost-effectively?
A
Configure S3 Standard-Infrequent Access (S3 Standard-IA) storage for the initial storage tier of the objects.
B
Move the files to S3 Intelligent-Tiering and configure it to move objects to a less expensive storage tier after 90 days.
C
Configure S3 inventory to manage objects and move them to S3 Standard-Infrequent Access (S3 Standard-IA) after 90 days.
D
Implement an S3 Lifecycle policy that moves the objects from S3 Standard to S3 Standard-Infrequent Access (S3 Standard-IA) after 90 days.
Explanation:
Correct Answer: D - Implement an S3 Lifecycle policy that moves the objects from S3 Standard to S3 Standard-Infrequent Access (S3 Standard-IA) after 90 days.
Why this is the most cost-effective solution:
S3 Lifecycle policies are automated and cost-effective: Lifecycle policies automatically transition objects between storage classes based on age criteria, requiring no manual intervention or additional management overhead.
S3 Standard-IA is appropriate for infrequently accessed data: The problem states that downloads are infrequent for ringtones older than 90 days. S3 Standard-IA offers lower storage costs than S3 Standard while maintaining the same durability, availability, and performance characteristics.
Minimum object size requirement is met: The files are at least 128 KB in size, which meets the minimum object size requirement for S3 Standard-IA (128 KB).
Readily available access: S3 Standard-IA maintains millisecond access times, so files remain readily available for users when needed.
Analysis of other options:
A. Configure S3 Standard-IA storage for the initial storage tier: This is not optimal because newer ringtones (less than 90 days old) are likely accessed more frequently. Starting with S3 Standard-IA for all objects would incur unnecessary retrieval fees for frequently accessed newer content.
B. Move the files to S3 Intelligent-Tiering: While S3 Intelligent-Tiering can automatically move objects between access tiers, it's more expensive than using a simple lifecycle policy for predictable access patterns. The company knows that access patterns change at exactly 90 days, making a lifecycle policy more cost-effective.
C. Configure S3 inventory to manage objects: S3 inventory is a reporting tool, not an automation tool for moving objects. This would require building custom automation to move objects based on inventory reports, which is more complex and less efficient than using lifecycle policies.
Key AWS concepts:
This solution provides the best balance of automation, cost-effectiveness, and meeting the requirement of keeping files readily available.