A ticket booking system stores uploaded documents in S3. The business requires a copy in another AWS Region for disaster recovery. What should be configured? The design must avoid adding custom operational scripts.
Trap 1: S3 lifecycle transition to Glacier Flexible Retrieval
Lifecycle transition changes storage class, not Region.
Trap 2: An EBS snapshot schedule
EBS snapshots do not apply to S3 objects.
Trap 3: A CloudFront distribution
CloudFront caches content but is not a durable DR copy.
- A
S3 lifecycle transition to Glacier Flexible Retrieval
Why wrong: Lifecycle transition changes storage class, not Region.
- B
An EBS snapshot schedule
Why wrong: EBS snapshots do not apply to S3 objects.
- C
S3 Cross-Region Replication with versioning enabled
CRR asynchronously replicates objects to a bucket in another Region and requires versioning.
- D
A CloudFront distribution
Why wrong: CloudFront caches content but is not a durable DR copy.