Cert Notes/ Commute Study Notes
Roadmap
KOEN
CLF-C02 · FoundationalCloud Practitioner - Foundational
  • Week 1
    • 1.What Is Cloud Computing
    • 2.AWS Global Infrastructure
    • 3.The Shared Responsibility Model
    • 4.The Six Pillars of the Well-Architected Framework and the Value of Cloud Adoption
    • 5.Week 1 Wrap-Up: Cloud Concepts Review
  • Week 2
    • 1.Compute Overview: EC2, Lambda, and Containers (ECS/Fargate)
    • 2.Storage Overview: S3 (Object), EBS (Block), EFS/FSx (File)
    • 3.Networking Basics: VPC, Subnets, Security Groups, Internet Gateway
    • 4.Content Delivery and DNS: CloudFront, Route 53, Edge Services
    • 5.Week 2 Wrap-Up — Core Services 1 Review
  • Week 3
    • 1.Database Overview: The Same "DB" Serves Different Purposes
    • 2.Application Integration: Connecting Systems Loosely
    • 3.Management & Monitoring Tools: Watching and Tracing Your Systems
    • 4.Deployment, Automation & More: Infrastructure as Code, and Without Servers
    • 5.Week 3 Synthesis — Core Services 2 Review
  • Week 4
    • 1.The Shared Responsibility Model in Depth and IAM Fundamentals
    • 2.Security Services at a Glance: What Threat Does Each Stop?
    • 3.Compliance: Certificates, Compliance Programs, and the Nationality of Data
    • 4.Data Protection Basics: Encryption, Key Management, and Secret Storage
    • 5.Week 4 Synthesis: Security and Compliance All in One
  • Week 5
    • 1.Pricing Models: The Same Compute Costs Differently Depending on How You Buy It
    • 2.Cost Management Tools: See What You Spent, Stop Leaks Before They Happen
    • 3.Support Plans: How AWS Helps When Problems Arise
    • 4.Billing Structure: Pay for Many Accounts as One, and Gauge Costs in Advance
    • 5.Week 5 Wrap-Up: Billing, Pricing, and Support in One Review
  • Week 6
    • 1.Domain Review 1: Cloud Concepts + Cloud Technology & Services Core Recap
    • 2.Domain Review 2: Security & Compliance + Billing, Pricing & Support Core Recap
    • 3.Full Mock Exam Pace: All Four Domains Combined
    • 4.Common Traps and Keywords: The "Keyword → Service" Translation Table
    • 5.D-Day Wrap-Up: Exam Structure, Time Allocation, and a Final Check Checklist
DVA-C02 · AssociateDeveloper - Associate
SAA-C03 · AssociateSolutions Architect - Associate
SOA-C02 · AssociateCloudOps Engineer - Associate
SAP-C02 · ProfessionalSolutions Architect - Professional
DOP-C02 · ProfessionalDevOps Engineer - Professional
SCS-C03 · SpecialtySecurity - Specialty
MLA-C01 · AssociateMachine Learning Engineer - Associate
AIF-C01 · FoundationalAI Practitioner - Foundational
DEA-C01 · AssociateData Engineer - Associate
MLS-C01 · SpecialtyMachine Learning - Specialty
← CLF-C02/Week 1/Day 2
CLF-C02· AssociateWeek 1 · Day 2~15 min read

Day 2 - AWS Global Infrastructure

Yesterday we learned that the cloud is "computing resources rented over the internet." But those resources are real servers sitting in a building somewhere. Today we look at how AWS lays out that infrastructure across the world — Regions, Availability Zones (AZs), and edge locations — and clarify how "global services" differ from "regional services." Once you have this map in your head, every service you learn afterward makes far more sense.

Regions: Footholds Around the World

A Region is a geographic area where AWS clusters its data centers. They exist in many places around the world, such as Seoul, Tokyo, Northern Virginia, and Frankfurt. When you build a service, you choose which Region to place it in.

When choosing a Region, you typically weigh these four factors.

FactorMeaning
Latency (distance)The closer the Region is to your users, the faster the response
ComplianceMeeting legal requirements such as "data must stay in the country"
Service availabilityNot every service is available in every Region
CostThe same service can be priced differently per Region

💡 Related theory: Regions operate completely independently of one another. They are isolated so that a problem in one Region does not affect the others. That's why, if you spread a critical service across multiple Regions, it can keep running from another region even if an entire area goes down. This is the basic idea behind disaster recovery (DR) design.

Availability Zones (AZs): Independent Groupings Within a Region

A single Region is further divided into multiple Availability Zones (AZs). Each AZ is a facility made up of one or more physical data centers, with independent power, cooling, and networking. Every AWS Region typically has three or more AZs.

Why divide things this way? So that even if one data center suffers a power outage or fire, the other AZs remain intact — in other words, they are physically separated so that failures don't spread. At the same time, AZs are connected to each other by fast dedicated networks, so they can exchange data almost in real time.

        [ Region: Seoul (ap-northeast-2) ]
                     |
      +--------+--------+--------+--------+
      |        |        |        |
    AZ-a     AZ-b     AZ-c     AZ-d   ← each AZ has independent power and networking
      |        |        |        |
   Data center  Data center  Data center  Data center

The key takeaway is simple. Instead of placing your service in only one AZ, spread it across two or more AZs — then even if an entire AZ goes down, your service survives. This is called "high availability (HA) design."

💡 Related theory: An exam point to remember: "a Region ≠ a single data center" and "an AZ ≠ a single data center." A Region is a group of multiple AZs, and an AZ is a group of one or more data centers. In other words, remember the three-tier structure: Region > AZ > data center.

Edge Locations: Closer to the User

Edge locations far outnumber Regions and AZs, and they are scattered in places closer to users as content-delivery footholds. There are hundreds of them worldwide.

Their flagship use is CloudFront (a content delivery network, CDN). For example, when a user in Korea views an image hosted on a server in the U.S., fetching it from the U.S. every time is slow. Instead, if that image is pre-copied (cached) to an edge location near Korea, the user receives it quickly from a nearby site. Beyond that, services such as Route 53 (DNS) also operate at the edge.

💡 Related theory: Remember the difference in roles: Regions and AZs are "where data and compute live," while edge locations are "where content is delivered quickly to users." Caching content at the edge not only speeds up responses but also reduces load on the origin server.

Global Services vs. Regional Services

AWS services fall into two broad categories. This distinction appears frequently on the exam.

CategoryMeaningExamples
Regional servicesTied to a specific Region; you pick a Region and use them thereEC2 (virtual servers), RDS (databases), S3, and most other services
Global servicesOperate as a single worldwide entity, independent of RegionsIAM (users and permissions), Route 53 (DNS), CloudFront (CDN)

Put simply, most services are regional services where you must choose "which Region to put them in." In contrast, things that inherently need to operate across the entire world — such as IAM (account and permission management), Route 53 (domain DNS), and CloudFront (edge caching) — are global services.

💡 Related theory: S3 is an easy one to get confused about. An S3 bucket name must be unique worldwide (a global namespace), but the actual data is stored in a specific Region. In other words, the name is global, but the data is regional. Be sure to distinguish this: "just because bucket names are global does not mean the data is replicated worldwide."

Wrapping Up

Today we drew the map of AWS infrastructure. We covered the three-tier structure of Region (worldwide foothold) > Availability Zone (independent facility within a Region) > data center, the edge locations that deliver content quickly to users, and the distinction that while most services are regional, some — such as IAM, Route 53, and CloudFront — are global services. In the next article, we look at the Shared Responsibility Model, which defines whether AWS or the customer is responsible for security and operations on top of this infrastructure.

📝 Practice Questions

Click a choice to reveal the answer and explanation.

Question 1

Which of the following correctly lists the building blocks of AWS infrastructure from largest to smallest?

Question 2

What is the most appropriate way to keep a service running even if a failure occurs in one AZ?

Question 3

Which infrastructure component is used to cache content close to users in order to deliver images from a U.S. server to users in Korea more quickly?

Question 4

Which of the following is a global service that operates as a single worldwide entity, independent of Regions?

Question 5

Which of the following is NOT a factor to consider when selecting a Region?

PreviousWhat Is Cloud ComputingWeek 1 · Day 1Next The Shared Responsibility ModelWeek 1 · Day 3

On this page

  • Regions: Footholds Around the World
  • Availability Zones (AZs): Independent Groupings Within a Region
  • Edge Locations: Closer to the User
  • Global Services vs. Regional Services
  • Wrapping Up
  • Practice Questions