AWS Global Infrastructure

Regions, Availability Zones, and edge locations — how AWS is physically organized and why it matters for availability and latency.

9 min read

The building blocks

AWS's physical footprint is organized in a strict hierarchy: Regions contain Availability Zones, which contain one or more data centers. Separately, a much larger network of edge locations brings content close to end users. Nearly every architecture and availability question on the exam builds on these terms.

ComponentWhat it isKey numbers/facts
RegionA physical geographic area (e.g., us-east-1 in N. Virginia) containing multiple isolated AZs30+ worldwide; you choose where data lives
Availability Zone (AZ)One or more data centers with independent power, cooling, and networkingEach Region has at least 3 AZs, linked by low-latency private fiber
Edge locationA small site that caches content near users, used by CloudFront and Route 53400+ locations — far more than Regions
Local ZoneAn extension of a Region placing compute/storage in a large city for single-digit-ms latencyFor latency-critical apps near specific metros
AWS WavelengthAWS compute embedded in telecom 5G networksUltra-low latency for mobile/5G apps
Think of it like this

Think of a Region as a metropolitan area, each AZ as a separate self-sufficient campus across town from the others, and edge locations as thousands of corner kiosks worldwide that keep popular items in stock so nobody drives across the country for them.

Choosing a Region

Four factors when picking a Region

  • Compliance / data residency — legal requirements may dictate where data must physically stay. This factor overrides all others.
  • Latency (proximity to users) — closer Regions mean faster responses.
  • Service availability — new services and features don't launch in every Region at once.
  • Pricing — the same service can cost different amounts in different Regions.
Exam tip

Deploying across multiple AZs = high availability within a Region. Deploying across multiple Regions = disaster recovery and lower global latency. Data does not leave a Region unless you configure it to (e.g., replication) — a fact AWS emphasizes for data residency.

The edge network

Amazon CloudFront

AWS's CDN: caches your content (images, video, APIs) at edge locations so users load it from nearby instead of from your Region.

Amazon Route 53

Global DNS service that answers queries from the edge network, routing users to healthy, nearby endpoints (100% availability SLA).

AWS Global Accelerator

Routes user traffic onto AWS's private backbone at the nearest edge for faster, more stable performance to your app — no caching involved.

Tip

CloudFront caches content; Global Accelerator accelerates the network path (static IPs, no caching). If the scenario is about media/static files, choose CloudFront; if it's about improving global performance of a TCP/UDP application, choose Global Accelerator.

Knowledge check
Question 1 of 4

What is an AWS Availability Zone?