AWS CLF-C02 — Route 53, CloudFront, Global Accelerator, Outposts, WaveLength, Local Zones
A managed Domain Name System (DNS) web service. Highly available, scalable, and authoritative DNS.
| Record | Purpose | Example |
|---|---|---|
| A | Maps hostname to IPv4 address | example.com → 12.34.56.78 |
| AAAA | Maps hostname to IPv6 address | example.com → 2001:db8::1 |
| CNAME | Maps hostname to another hostname | search.example.com → www.example.com |
| Alias | Maps hostname to an AWS resource | example.com → ELB DNS name |
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.
| Policy | Description | Use Case |
|---|---|---|
| Simple | Route to a single resource. No health checks. | Single server, simple setup |
| Weighted | Distribute traffic by assigned weight percentages | A/B testing, gradual migration (e.g., 70/30 split) |
| Latency-based | Route to region with lowest latency for the user | Global apps needing best performance |
| Failover | Active-passive failover using health checks | Disaster recovery to a secondary site |
| Geolocation | Route based on user's geographic location | Localized content, restrict distribution by country |
| Geoproximity | Route based on geographic location with bias to shift traffic | Shift traffic between regions using bias values |
| Multi-value | Return multiple healthy resources (up to 8). Client-side load balancing. | Simple load balancing with health checks |
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).
A global Content Delivery Network (CDN) that caches content at 450+ edge locations worldwide.
| Feature | CloudFront | S3 Cross-Region Replication |
|---|---|---|
| Network | 450+ edge locations globally | Specific regions you choose |
| Caching | Files cached for a TTL (time-to-live) | Near real-time replication |
| Content Type | Static content available everywhere | Dynamic content with low latency in specific regions |
| Setup | Automatic global distribution | Must be set up for each target region |
| Read/Write | Read-only cache | Read-only replicas (or read-write with different config) |
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.
Speed up uploads to S3 by transferring data to an edge location, which forwards it to the S3 bucket over the AWS private network.
Improve global application availability and performance using the AWS global network. Routes traffic through AWS edge locations to optimal endpoints.
| Feature | CloudFront | Global Accelerator |
|---|---|---|
| Content Type | Cacheable content (images, videos, static files) | Non-cacheable content (TCP/UDP traffic) |
| Mechanism | Caches at edge locations | Proxies packets at edge, no caching |
| Protocol | HTTP/HTTPS | TCP/UDP (wider range) |
| IP Addresses | Dynamic (DNS-based) | 2 static Anycast IPs |
| Use Case | Static content delivery (CDN) | Gaming, IoT, VoIP, HTTP with static IPs |
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-managed infrastructure delivered on-premises (in your own data center).
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."
Infrastructure deployments embedded within 5G network providers' data centers at the edge of telecom carriers' networks.
WaveLength = 5G edge computing. If the exam mentions "5G" or "telecom edge," the answer is WaveLength.
Extend your VPC to additional locations closer to end users for latency-sensitive applications.
| Concept | Description |
|---|---|
| Region | Cluster of data centers. Deploy regional services here. |
| Availability Zone | 1+ data centers within a region. High availability via multi-AZ. |
| Edge Location | CDN cache point. CloudFront + Global Accelerator. |
| Outposts | AWS infrastructure in YOUR data center. |
| WaveLength | AWS at the 5G edge (telecom network). |
| Local Zones | Extend a Region closer to users in a metro area. |