0Pricing
AWS Solutions Architect · Lesson

AWS Global Infrastructure

Explore Regions, Availability Zones, and Edge Locations, and learn how to choose the right Region for your workload.

AWS Global Infrastructure is a free AWS Solutions Architect lesson on CoddyKit — lesson 2 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the AWS Solutions Architect learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

AWS Regions Explained

An AWS Region is a geographic area holding several isolated zones. There are 30+ worldwide, and each is independent — great for data-residency rules. The code lists them.

# List all available AWS Regions
aws ec2 describe-regions --query 'Regions[].RegionName' --output table

Availability Zones: Fault Isolation

Each Region has multiple Availability Zones — separate data centres with their own power and networking. Spread across them and one failure won't take you down.

# Describe Availability Zones in the current region
aws ec2 describe-availability-zones \
  --query 'AvailabilityZones[].ZoneName' \
  --output table

Edge Locations and Points of Presence

Edge Locations are AWS endpoints that serve content close to your users, powering CloudFront and Route 53. There are far more of them than Regions.

Local Zones and Wavelength Zones

Local Zones push AWS closer to big cities for ultra-low latency, and Wavelength Zones live inside 5G networks for mobile apps. Both are opt-in extensions of AZs.

Choosing the Right AWS Region

Picking a Region comes down to four things: compliance, proximity to users, which services are available there, and price. The exam loves these trade-off scenarios.

AWS Outposts: Cloud in Your Data Centre

AWS Outposts puts a rack of real AWS hardware in your own data centre, running the same APIs as the cloud. Ideal when data must stay on-site but you still want AWS.

Global Network Backbone

AWS runs its own private global network connecting all Regions. Traffic between AWS services stays on this backbone, not the public internet — faster and more secure.

Region Pairs and Data Replication

AWS won't copy data across Regions unless you enable replication. But some services like IAM and Route 53 are global — knowing which is which matters on the exam.

AZ Naming and Physical Mapping

An AZ name like us-east-1a maps to a different physical data centre per account. To match the same building across accounts, use the AZ ID instead. The code shows IDs.

# Get physical AZ IDs for the region
aws ec2 describe-availability-zones \
  --query 'AvailabilityZones[].{Name:ZoneName,ID:ZoneId}' \
  --output table

AWS GovCloud: Isolated Regions

AWS GovCloud is a set of isolated Regions for sensitive US government workloads. Only vetted US entities can use them, under extra compliance like FedRAMP High.

Infrastructure and Availability Design

The rule of thumb: span multiple Availability Zones to survive a data-centre failure, and multiple Regions for true disasters. AZ-level HA covers most cases cheaply.

Quick Check

Test your understanding of AWS Solutions Architect (SAA-C03) concepts from this lesson.

Lesson Recap

You learned that AWS Regions hold isolated Availability Zones, and that Edge Locations serve content worldwide with low latency. Next: the core service families.

Frequently asked questions

Is the “AWS Global Infrastructure” lesson free?

Yes — the full text of “AWS Global Infrastructure” is free to read here on the web, and the AWS Solutions Architect course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the AWS Solutions Architect course, upgrade to CoddyKit PRO.

What will I learn in “AWS Global Infrastructure”?

Explore Regions, Availability Zones, and Edge Locations, and learn how to choose the right Region for your workload. You practise AWS Solutions Architect with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start AWS Solutions Architect?

No prior experience is required. AWS Solutions Architect on CoddyKit is structured for beginners through advanced learners; this is — lesson 2 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “AWS Global Infrastructure” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this AWS Solutions Architect lesson?

Yes. Every AWS Solutions Architect lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. What Is Cloud Computing and AWS?
  2. AWS Global Infrastructure
  3. Core Service Categories Overview
  4. Shared Responsibility Model
← Back to AWS Solutions Architect