Courseiva
Design High-Performing ArchitecturesmediumMultiple ChoiceObjective-mapped

CloudFront CDN for Global Static Content Delivery — Reduce Latency

A global video platform serves mostly static images and JavaScript files from an S3 origin. Users in distant countries report slow load times. What should improve performance most? The architecture review board prefers a managed AWS-native control.

Quick Answer

CloudFront is the answer because the problem described is fundamentally one of physical distance: users far from the S3 origin experience latency mainly from the time it takes data to travel across the network, and no amount of tuning the origin itself fixes that. CloudFront addresses it by caching the static images and JavaScript files at edge locations positioned close to users around the world, so requests are served from a nearby cache instead of routing all the way back to the origin bucket for every request. Beyond caching, connecting users to the nearest edge location and using optimizations like HTTP/2 and persistent connections back to the origin when a cache miss does occur further reduces the round-trip cost of each request. This is also why the architecture review board's preference for a managed, AWS-native control fits so well: CloudFront integrates directly with S3 as an origin without requiring any additional infrastructure to build or maintain, unlike a self-managed caching or replication approach. Whenever a scenario describes static content served from a single regional origin with complaints specifically about users in distant locations, that geographic pattern is the signal to reach for a CDN like CloudFront rather than trying to solve the problem at the origin storage layer itself.

⚠ Common exam trap

A common mix-up: candidates confuse scaling storage (larger bucket) or compute (Auto Scaling) with performance improvement, overlooking that latency for static content is primarily a network distance problem solved by a CDN like CloudFront.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Amazon CloudFront distribution with the S3 bucket as origin

Amazon CloudFront is a global content delivery network (CDN) that caches static content (images, JavaScript) at edge locations closer to users, drastically reducing latency for distant countries. By using the S3 bucket as the origin, CloudFront offloads requests from S3 and accelerates delivery via HTTP/2, TCP optimizations, and persistent connections. This is the most effective managed AWS-native solution for improving global load times for static assets.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • A larger S3 bucket

    Why it's wrong here

    Bucket size does not affect user latency.

  • Amazon CloudFront distribution with the S3 bucket as origin

    Why this is correct

    CloudFront caches content at edge locations close to users, reducing latency.

  • RDS read replicas

    Why it's wrong here

    Read replicas do not accelerate static content delivery from S3.

  • An EC2 Auto Scaling group in one Region

    Why it's wrong here

    More EC2 instances do not cache static S3 content globally.

Visual reference

Client Server SYN (seq=100) SYN-ACK (seq=200, ack=101) ACK (ack=201) Connection established — data transfer begins

Quick reference

AWS S3 Storage Class Comparison

Storage ClassMin DurationRetrievalUse Case
S3 StandardNoneImmediateFrequently accessed data
S3 Standard-IA30 daysImmediateInfrequent access, rapid retrieval
S3 One Zone-IA30 daysImmediateNon-critical infrequent data
S3 Intelligent-TieringNoneImmediate–hoursUnknown or changing access patterns
S3 Glacier Instant90 daysMillisecondsArchive with instant retrieval
S3 Glacier Flexible90 daysMinutes–hoursArchive, flexible retrieval
S3 Glacier Deep Archive180 daysHoursLong-term compliance archive

About these practice questions

This SAA-C03 question is part of Courseiva's 302-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

3 more ways this is tested on SAA-C03

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. A global video platform serves mostly static images and JavaScript files from an S3 origin. Users in distant countries report slow load times. What should improve performance most? The design must avoid adding custom operational scripts.

medium
  • A.A larger S3 bucket
  • B.Amazon CloudFront distribution with the S3 bucket as origin
  • C.RDS read replicas
  • D.An EC2 Auto Scaling group in one Region

Why B: Amazon CloudFront is a content delivery network (CDN) that caches static content (images, JavaScript files) at edge locations worldwide. By distributing content closer to users, it reduces latency and improves load times for distant countries without requiring any custom operational scripts or changes to the S3 bucket.

Variation 2. A global video platform serves mostly static images and JavaScript files from an S3 origin. Users in distant countries report slow load times. What should improve performance most?

medium
  • A.A larger S3 bucket
  • B.Amazon CloudFront distribution with the S3 bucket as origin
  • C.RDS read replicas
  • D.An EC2 Auto Scaling group in one Region

Why B: Amazon CloudFront is a content delivery network (CDN) that caches static content (images, JavaScript) at edge locations worldwide. By distributing content closer to users, it reduces latency and improves load times significantly compared to serving directly from a single S3 origin. This is the most effective solution for a global user base accessing static assets.

Variation 3. A global video platform serves mostly static images and JavaScript files from an S3 origin. Users in distant countries report slow load times. What should improve performance most? The team wants the control to be enforceable during normal operations.

medium
  • A.A larger S3 bucket
  • B.Amazon CloudFront distribution with the S3 bucket as origin
  • C.RDS read replicas
  • D.An EC2 Auto Scaling group in one Region

Why B: Amazon CloudFront is a content delivery network (CDN) that caches static content (images, JavaScript) at edge locations worldwide, reducing latency for users in distant countries. By using the S3 bucket as an origin, CloudFront serves cached copies from the nearest edge, drastically improving load times. This solution is enforceable during normal operations because CloudFront provides cache control headers and invalidation APIs to manage content freshness.

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This SAA-C03 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SAA-C03 exam.