A global pharmaceutical logistics company is designing a temperature-controlled vaccine shipment monitoring system on AWS. The application runs on Amazon EC2 instances in private subnets across multiple Availability Zones in both the `us-east-1` and `eu-west-1` Regions. The EC2 instances must query a database containing shipping telemetry and connect to external internet-based pharmaceutical registries to report alerts.
The business has specified a Recovery Time Objective (RTO) of 15 minutes and a Recovery Point Objective (RPO) of 2 minutes. The architecture must automatically route end-users to the region with the lowest latency during normal operations, and redirect them to the alternate region if one region becomes unhealthy. Furthermore, internal microservices in both regions must resolve the internal endpoint `api.coldchain.internal` hosted in a Route 53 Private Hosted Zone (PHZ).
Which two configuration strategies should the solutions architect implement to meet these requirements? (Select TWO.)
- Configure Amazon Aurora Global Database with the primary cluster in `us-east-1` and a secondary cluster in `eu-west-1`. Deploy Route 53 latency-based routing records with associated health checks pointing to the Application Load Balancers in both regions.Answer
- Deploy a NAT Gateway in each Availability Zone in both regions where the EC2 instances are located. Associate the Route 53 Private Hosted Zone containing the internal API record with the VPCs in both `us-east-1` and `eu-west-1`.Answer
- CDeploy a single NAT Gateway in a public subnet of a single Availability Zone in each region to route outbound traffic. Associate the Route 53 Private Hosted Zone with the `us-east-1` VPC only, and establish a VPC peering connection to allow the `eu-west-1` VPC to resolve the internal domain.
- DConfigure Amazon RDS for PostgreSQL with Multi-AZ enabled in `us-east-1` as the primary database. Set up AWS Backup to perform hourly cross-region snapshot copies to `eu-west-1`, and restore the database from the latest snapshot during a disaster event.
- EDeploy Amazon RDS for PostgreSQL with Multi-AZ enabled in `us-east-1`. Configure the application instances in `eu-west-1` to read directly from the Multi-AZ standby instance located in the secondary Availability Zone of `us-east-1` to minimize cross-region latency.