CloudFront on the SAA-C03 goes beyond “a CDN caches content near users”. The scenarios test the architect-level features: how you lock the origin, gate viewers, route paths, and fail over — each mapped to one specific control.
The baseline use case remains latency: a single-Region origin serving a global audience is slow, and CloudFront fixes it by caching at edge locations close to users. Watch for distractors that speed the origin (bigger instances, more AZs) when the problem is distance — those improve the wrong thing.
Two kinds of access control
The exam consistently separates these, so keep them apart:
- Origin Access Control (OAC) — locks the origin. With a matching bucket policy, only the distribution can read a private S3 bucket, blocking direct object access.
- Signed URLs / signed cookies — gate the viewer. Time-limited, authorized access to premium content; URLs for single files, cookies for many.
OAC protects the origin from the world; signing decides which users may view.
Routing and failover
- Cache behaviors match path patterns and point each to a different origin —
/static/* to S3, /api/* to an ALB — all from one distribution.
- Origin groups provide automatic failover: if the primary origin returns errors, CloudFront retries a secondary.
Freshness: invalidation
When updated content is stuck behind a long TTL at the edge, a cache invalidation removes those paths so the next request pulls the fresh version. (For frequently changing assets, versioned file names avoid invalidations altogether.)
How to use the six scenarios below
Answer each one before opening the explanation, and when you miss, name the control the requirement needed — “only via CloudFront”, “only subscribers, limited time”, “global latency”, “split by path”, “automatic origin failover”, “refresh before TTL”. Every explanation states that requirement and dismantles the distractors, which often swap origin protection for viewer access or offer a non-CDN service. For the domain overview, see Design High-Performing Architectures.
Updated for SAA-C03 (July 2026). The sample questions above are our own work
in the style of the exam — not real exam items. The exam itself is set and marked
by the certification body.