A SaaS provider operates an analytics application on Amazon EC2 instances located in the private subnets of VPC A in the us-west-2 Region. The application performs two primary data transfer tasks: it writes approximately of data per month to an Amazon DynamoDB table in the same Region, and it replicates of processed analytics reports per month to a centralized database server in VPC B in the same Region. Currently, both traffic pathways are routed through NAT Gateways in VPC A, resulting in significant data processing charges. Which combination of architectural modifications will minimize data transfer costs? (Select TWO.)
- Create a Gateway VPC Endpoint for Amazon DynamoDB in VPC A and associate it with the route tables of the private subnets.Cevap
- Establish a VPC Peering connection between VPC A and VPC B, and configure the route tables to direct inter-VPC traffic over the peering connection.Cevap
- CDeploy an Interface VPC Endpoint (AWS PrivateLink) for Amazon DynamoDB in VPC A's private subnets.
- DProvision an AWS Transit Gateway, attach VPC A and VPC B to it, and route all inter-VPC traffic through the Transit Gateway.
- EConfigure a NAT Gateway in each Availability Zone of VPC A and update the route tables to route VPC B traffic through the NAT Gateway using public IP addresses.
Cevap
Creating a Gateway VPC Endpoint for Amazon DynamoDB in VPC A, and establishing a VPC Peering connection between VPC A and VPC B.
The correct options are to create a Gateway VPC Endpoint for Amazon DynamoDB and to establish a VPC Peering connection. Gateway VPC Endpoints are a free feature that allows private subnets to communicate with Amazon DynamoDB without traversing NAT Gateways, thus eliminating NAT Gateway data processing fees. VPC Peering allows direct network routing between VPC A and VPC B in the same Region without data processing fees, which is much more cost-effective than Transit Gateway routing.
Adım Adım Çözüm
Anahtar Kavram
Cost-effective routing via Gateway VPC Endpoints and VPC Peering to avoid NAT Gateway and Transit Gateway data processing fees.