You have a dataset that is accessed frequently for the first 30 days after upload, then rarely accessed but must be retained for years. Which S3 storage class is the best fit to optimize cost while meeting access needs?
Think about a storage class that adapts automatically to changing access patterns.
S3 Intelligent-Tiering automatically moves data between frequent and infrequent access tiers based on usage, optimizing cost without performance impact. Using Standard all the time is costly. Glacier Deep Archive is for long-term archival and has retrieval delays. One Zone-IA risks data loss and is not ideal for critical data.
You want to automate moving objects from S3 Standard to S3 Glacier after 60 days and then delete them after 2 years. Which lifecycle policy configuration achieves this?
Think about the order: first move to cheaper storage, then delete later.
The lifecycle policy should first transition objects to Glacier after 60 days to save cost, then expire (delete) them after 730 days (2 years). Option D correctly sets this order. Other options either delete too early or transition too late.
You have sensitive data stored in S3 Glacier Deep Archive. You want to ensure only authorized users can restore and access this data. Which combination of settings best enforces this?
Think about combining encryption and access policies for sensitive data.
Bucket policies restricting restore actions combined with encryption using AWS KMS provide strong security controls. Public read ACLs expose data. Disabling encryption weakens security. Allowing all users to restore risks unauthorized access.
You upload objects to S3 Intelligent-Tiering. After 45 days, some objects are not accessed at all. What happens to these objects automatically?
Consider how Intelligent-Tiering optimizes cost based on usage.
S3 Intelligent-Tiering monitors access and moves objects not accessed for 30 consecutive days to the infrequent access tier automatically to save cost. It does not delete objects or move them to Glacier Deep Archive immediately.
Your company stores petabytes of data that are rarely accessed but must be retained for compliance. You want to minimize storage costs while ensuring data durability and occasional retrieval within hours. Which storage class and strategy best meet these requirements?
Think about balancing cost, durability, and retrieval time.
S3 Glacier Flexible Retrieval offers low cost with retrieval times in minutes to hours, suitable for rarely accessed data with compliance needs. Transitioning data after 30 days reduces cost. Standard is costly for large data. Glacier Deep Archive has longer retrieval times (up to 12 hours). One Zone-IA lacks multi-AZ durability.