A company is designing a multi-Region application with an Application Load Balancer (ALB) in each Region fronting an Auto Scaling group of EC2 instances. The application must be accessible via a single DNS name, and traffic should be routed to the closest healthy Region using a latency-based routing policy. Which AWS service should be used as the DNS endpoint to achieve this?
Route 53 latency-based routing sends traffic to the AWS endpoint with the lowest latency.
Why this answer
Amazon Route 53 is the correct choice because it supports latency-based routing policies, which direct traffic to the AWS Region that provides the lowest latency for the end user. By configuring a single DNS name with latency records pointing to the ALB endpoints in each Region, Route 53 can automatically route requests to the closest healthy Region, meeting the requirement for a single DNS name and latency-based routing.
Exam trap
The ANS-C01 exam often tests the distinction between DNS-based routing (Route 53) and network-layer traffic steering (Global Accelerator), where candidates mistakenly choose Global Accelerator because they think of 'lowest latency' as a network-layer feature, but the question specifically requires a single DNS name with latency-based routing policy, which is a Route 53 feature.
How to eliminate wrong answers
Option B (Amazon CloudFront) is wrong because CloudFront is a content delivery network (CDN) that caches content at edge locations and uses DNS to route to the nearest edge, not to the closest healthy Region via latency-based routing; it does not provide a latency-based routing policy for regional ALBs. Option C (AWS Global Accelerator) is wrong because it uses Anycast IP addresses and the AWS global network to route traffic to the optimal endpoint, but it does not use a DNS-based latency routing policy; it operates at the network layer (Layer 3/4) and requires a static IP, not a single DNS name with latency records. Option D (AWS Network Load Balancer) is wrong because it is a regional load balancer that operates at Layer 4 and does not provide DNS-based routing policies or multi-Region traffic steering; it cannot route traffic to the closest healthy Region based on latency.