A global digital advertising agency is designing a new real-time campaign telemetry store (NoSQL workload) and a creative asset repository (Object storage workload) across two AWS Regions: `us-east-1` (primary) and `us-west-2` (disaster recovery). The disaster recovery region is managed under a separate AWS account within the same AWS Organization.
The telemetry store must support active-active writes in both regions with sub-second replication latency, handle semi-structured data, and scale automatically to handle millions of requests per second. The creative asset repository must store large media files with durability, replicate assets from `us-east-1` to `us-west-2` automatically, and meet a Recovery Point Objective (RPO) of 15 minutes. All data must be encrypted at rest using Customer Managed Keys (CMKs) to support key rotation and fine-grained access audits.
Which two database and storage strategy options should the solutions architect choose to meet these requirements? (Select TWO.)
- Deploy Amazon DynamoDB global tables in `us-east-1` and `us-west-2`, encrypted using customer managed keys (CMKs) created in each region, to handle the campaign telemetry workload.Answer
- Configure Amazon S3 Cross-Region Replication (CRR) from the primary bucket in `us-east-1` to a destination bucket in `us-west-2` in the secondary account. Encrypt the source bucket using a customer managed key (CMK) in `us-east-1`, and encrypt the destination bucket using a customer managed key (CMK) in `us-west-2`. Grant the replication IAM role permissions to decrypt with the source CMK and encrypt with the destination CMK.Answer
- CDeploy Amazon Aurora PostgreSQL with global databases. Configure the primary cluster in `us-east-1` and an Aurora replica in `us-west-2`. Enable Aurora Auto Scaling on both the primary and replica clusters to handle dynamic, active-active write workloads in both regions.
- DConfigure Amazon S3 Cross-Region Replication (CRR) from the primary bucket in `us-east-1` to a destination bucket in `us-west-2` in the secondary account. Encrypt both S3 buckets using the default AWS-managed KMS key (`aws/s3`), and configure the replication IAM role to assume a cross-account IAM role to perform replication.
- EStore the creative assets in an Amazon S3 bucket in `us-east-1`. Create a daily AWS Backup plan to copy the S3 recovery points to a backup vault in the secondary account in `us-west-2` to meet the RPO and cross-account isolation requirements.