Answer – C
The AWS Documentation mentions the following.
Cross-region replication is a bucket-level configuration that enables automatic, asynchronous copying of objects across buckets in different AWS Regions. We refer to these buckets as source bucket and destination bucket. Different AWS accounts can own these buckets.
AWS services are designed with DR considerations in mind. S3, for example, achieves 99.999999999% durability and 99.99% availability by redundantly storing data across multiple AZs within a region. It may be rare for the whole AWS region to go down, but it could cause massive permanent damage if we don’t plan for it; this is when S3 Cross-Region Replication (CRR) solution comes into play.
Option A is invalid because this is not the right way to take backups of an S3 bucket.
Option B is invalid because S3 will ensure that objects are available in multiple availability zones but not across regions in case of a disaster.
Option D is invalid because versioning can only help from accidental deletion of objects but not from disaster recovery.
For more information on Cross-Region Replication, please visit the URL-
https://docs.aws.amazon.com/AmazonS3/latest/dev/crr.html
NOTE:
Most organizations try to implement High Availability (HA) instead of DR to guard them against any downtime of services. In the case of HA, we ensure there exists a fallback mechanism for our services. The service that runs in HA is handled by hosts running in different availability zones but the same geographical region. However, this approach does not guarantee that our business will be up and running in case the entire region goes down. DR takes things to a completely new level, wherein you need to recover from a different region that’s separated by over 250 miles. Our DR implementation is an Active/Passive model, meaning that we always have minimum critical services running in different regions. Still, a major part of the infrastructure is launched and restored when required.