← Back to Home

Global Infrastructure

AWS CLF-C02 — Route 53, CloudFront, Global Accelerator, Outposts, WaveLength, Local Zones

Why Go Global?

AWS Global Infrastructure

Amazon Route 53

A managed Domain Name System (DNS) web service. Highly available, scalable, and authoritative DNS.

DNS Record Types

RecordPurposeExample
AMaps hostname to IPv4 addressexample.com → 12.34.56.78
AAAAMaps hostname to IPv6 addressexample.com → 2001:db8::1
CNAMEMaps hostname to another hostnamesearch.example.com → www.example.com
AliasMaps hostname to an AWS resourceexample.com → ELB DNS name
Key Point:

Alias records are an AWS extension to DNS. They work like CNAME but can be used for the zone apex (root domain like example.com). CNAME cannot be used for the root domain. Alias records are free and support native health checks.

Route 53 Routing Policies

PolicyDescriptionUse Case
SimpleRoute to a single resource. No health checks.Single server, simple setup
WeightedDistribute traffic by assigned weight percentagesA/B testing, gradual migration (e.g., 70/30 split)
Latency-basedRoute to region with lowest latency for the userGlobal apps needing best performance
FailoverActive-passive failover using health checksDisaster recovery to a secondary site
GeolocationRoute based on user's geographic locationLocalized content, restrict distribution by country
GeoproximityRoute based on geographic location with bias to shift trafficShift traffic between regions using bias values
Multi-valueReturn multiple healthy resources (up to 8). Client-side load balancing.Simple load balancing with health checks
Exam Tip:

Weighted = percentage split. Latency = fastest for user. Failover = DR. Geolocation = route by country/continent. Know the difference between Geolocation (user location) and Latency (network speed).

Amazon CloudFront

A global Content Delivery Network (CDN) that caches content at 450+ edge locations worldwide.

Key Features

CloudFront Origins

CloudFront vs S3 Cross-Region Replication

FeatureCloudFrontS3 Cross-Region Replication
Network450+ edge locations globallySpecific regions you choose
CachingFiles cached for a TTL (time-to-live)Near real-time replication
Content TypeStatic content available everywhereDynamic content with low latency in specific regions
SetupAutomatic global distributionMust be set up for each target region
Read/WriteRead-only cacheRead-only replicas (or read-write with different config)
Exam Tip:

CloudFront = static content cached globally, great for widely distributed users. S3 Cross-Region Replication = dynamic content that must be available at low latency in a few specific regions.

S3 Transfer Acceleration

Speed up uploads to S3 by transferring data to an edge location, which forwards it to the S3 bucket over the AWS private network.

AWS Global Accelerator

Improve global application availability and performance using the AWS global network. Routes traffic through AWS edge locations to optimal endpoints.

How It Works

Global Accelerator vs CloudFront

FeatureCloudFrontGlobal Accelerator
Content TypeCacheable content (images, videos, static files)Non-cacheable content (TCP/UDP traffic)
MechanismCaches at edge locationsProxies packets at edge, no caching
ProtocolHTTP/HTTPSTCP/UDP (wider range)
IP AddressesDynamic (DNS-based)2 static Anycast IPs
Use CaseStatic content delivery (CDN)Gaming, IoT, VoIP, HTTP with static IPs
Exam Tip:

CloudFront = CDN for cacheable content (HTTP). Global Accelerator = improve performance for TCP/UDP, provides static IPs. If the question mentions "static IP" or "gaming/IoT," think Global Accelerator.

AWS Outposts

AWS-managed infrastructure delivered on-premises (in your own data center).

Key Point:

Outposts = AWS services running in YOUR data center. "Hybrid cloud" with full AWS API experience on-premises. Think Outposts when the exam asks about "on-premises AWS" or "data residency requirements."

AWS WaveLength

Infrastructure deployments embedded within 5G network providers' data centers at the edge of telecom carriers' networks.

Exam Tip:

WaveLength = 5G edge computing. If the exam mentions "5G" or "telecom edge," the answer is WaveLength.

AWS Local Zones

Extend your VPC to additional locations closer to end users for latency-sensitive applications.

Global vs Regional Summary

ConceptDescription
RegionCluster of data centers. Deploy regional services here.
Availability Zone1+ data centers within a region. High availability via multi-AZ.
Edge LocationCDN cache point. CloudFront + Global Accelerator.
OutpostsAWS infrastructure in YOUR data center.
WaveLengthAWS at the 5G edge (telecom network).
Local ZonesExtend a Region closer to users in a metro area.