For IndividualsFor Educators
    ExpertMinds LogoExpertMinds
    HomeAWS SAA-C03Cheat Sheet
    Cheat SheetAmazon Web ServicesAWS SAA-C03

    AWS SAA-C03 Cheat Sheet: The Services That Appear on the Exam

    A structured reference covering every AWS service category tested on the SAA-C03 — with the one-line use case that distinguishes each service under exam conditions.

    ExpertMinds Editorial·14 January 2026·8 min read
    Take the AWS SAA-C03 practice exams →

    The SAA-C03 does not test memorisation — it tests your ability to pick the right service for a given set of constraints. The questions are scenario-based: a company needs X, has constraint Y, at the lowest cost. Your job is to eliminate wrong answers quickly. This reference is structured by constraint, not alphabetically.

    Key fact:65 questions · 130 minutes · Pass score 720/1000. Roughly 15% of questions are unscored pilot questions — you will not know which ones.

    Compute

    ServiceWhat it isExam trigger phrase
    EC2Virtual machines in the cloud"full control", "custom OS", "persistent compute"
    LambdaServerless function execution (max 15 min)"event-driven", "no servers to manage", "short-lived"
    ECSRun Docker containers on managed clusters"containers", "microservices" (with EC2 or Fargate)
    EKSManaged Kubernetes"Kubernetes", "container orchestration at scale"
    FargateServerless compute for ECS/EKS — no EC2 management"serverless containers", "no EC2 provisioning"
    Elastic BeanstalkPaaS — deploy code, AWS manages infrastructure"developers don't want to manage infrastructure"
    App RunnerFully managed container/web app deployment"simplest container deployment", "no infra knowledge"
    BatchRun batch jobs at scale"batch processing", "HPC", "job queues"
    LightsailSimple VPS for small workloads"simple web app", "predictable low cost", "no AWS expertise"
    Tip:EC2 vs Lambda decision: if the task runs longer than 15 minutes, cannot be Lambda. If it needs persistent state or a specific OS configuration, choose EC2.

    Storage

    Service / ClassWhat it isExam trigger phrase
    S3 StandardGeneral-purpose object storage, 11 9s durability"frequently accessed", "default"
    S3 Intelligent-TieringAuto-moves objects between tiers based on access"unknown or changing access patterns"
    S3 Standard-IALower cost, but retrieval fee; min 30-day charge"infrequently accessed", "backup", "DR"
    S3 One Zone-IALike Standard-IA but single AZ only"cost savings acceptable", "re-creatable data"
    S3 Glacier InstantArchive with millisecond retrieval"archive", "immediate access needed"
    S3 Glacier FlexibleArchive, retrieval in minutes to hours"archive", "hours retrieval acceptable"
    S3 Glacier Deep ArchiveLowest cost storage, retrieval 12–48 hours"7–10 year retention", "regulatory archive"
    EBSBlock storage attached to a single EC2 instance"persistent disk", "database volume", "single instance"
    EFSManaged NFS, shared across multiple EC2 instances"shared file system", "multiple instances"
    FSx for WindowsManaged Windows file system (SMB)"Windows workloads", "Active Directory integration"
    FSx for LustreHigh-performance file system for HPC/ML"HPC", "machine learning", "high throughput"
    Storage GatewayHybrid cloud storage connector"on-premises to AWS", "hybrid", "local cache"
    Snow FamilyPhysical devices for bulk data transfer or edge compute"petabytes of data", "limited bandwidth", "offline transfer"
    Watch out:S3 is not a file system — it is object storage. Questions asking for a "shared file system mounted across EC2 instances" want EFS, not S3.

    Databases

    ServiceTypeExam trigger phrase
    RDSManaged relational DB (MySQL, Postgres, Oracle, SQL Server, MariaDB)"relational", "SQL", "OLTP"
    AuroraAWS relational DB — up to 5× faster than MySQL, auto-scales storage"relational", "high performance", "serverless option"
    Aurora ServerlessAurora that scales compute to zero"unpredictable workloads", "dev/test", "infrequent use"
    DynamoDBManaged NoSQL, single-digit millisecond at any scale"NoSQL", "key-value", "massive scale", "millisecond latency"
    DynamoDB Accelerator (DAX)In-memory cache for DynamoDB"microsecond latency", "DynamoDB caching"
    ElastiCache (Redis)In-memory cache, supports persistence and pub/sub"session data", "leaderboard", "real-time"
    ElastiCache (Memcached)Simple distributed cache, no persistence"simple caching", "stateless"
    RedshiftManaged data warehouse — columnar, OLAP"analytics", "data warehouse", "OLAP", "petabyte-scale"
    NeptuneManaged graph database"graph", "relationships", "social network", "fraud detection"
    DocumentDBManaged MongoDB-compatible document database"MongoDB compatible", "document store"
    KeyspacesManaged Apache Cassandra"Cassandra compatible"
    TimestreamTime-series database"IoT", "time-series", "metrics over time"

    Test yourself on these services

    The SAA-C03 gives you a scenario and asks you to pick the right service. Reading this is not enough — Practice eliminating wrong answers under time pressure.

    Sign up freePractice now →

    Networking & Content Delivery

    Test yourself on AWS SAA-C03

    Practice questions graded with detailed guidance.

    Sign up freePractice now →
    ServiceWhat it isExam trigger phrase
    VPCIsolated virtual network; subnets, route tables, NACLs, security groups"network isolation", "private subnet"
    CloudFrontGlobal CDN with edge caching"low latency globally", "cache", "static + dynamic content"
    Route 53DNS service with health checks and routing policies"DNS", "failover", "latency routing", "geolocation"
    API GatewayManaged REST/WebSocket/HTTP API endpoint"expose Lambda via HTTP", "API management"
    ELB — ALBLayer 7 load balancer, path/host-based routing"HTTP/HTTPS", "path-based routing", "WebSocket"
    ELB — NLBLayer 4 load balancer, extreme performance"TCP/UDP", "static IP", "millions of requests per second"
    ELB — GLBRoutes traffic to third-party network appliances"firewall appliance", "inline inspection"
    Transit GatewayHub connecting VPCs and on-premises networks at scale"many VPCs", "hub-and-spoke", "centralized routing"
    VPN GatewayIPsec VPN from on-premises to AWS"on-premises to VPC", "encrypted", "internet-based"
    Direct ConnectDedicated private connection from on-premises to AWS"dedicated", "consistent bandwidth", "not over internet"
    PrivateLinkExpose services to other VPCs without traversing internet"private access", "no internet routing", "service endpoint"
    Global AcceleratorAnycast IPs that route to closest AWS edge; TCP/UDP"global static IPs", "non-HTTP", "low latency globally"
    Key fact:CloudFront vs Global Accelerator: CloudFront caches content at the edge. Global Accelerator proxies TCP/UDP traffic to your endpoints without caching. If the question mentions caching or static content, CloudFront. If it mentions TCP, UDP, or gaming — Global Accelerator.

    Security, Identity & Compliance

    ServiceWhat it isExam trigger phrase
    IAMUsers, roles, groups, policies — access control"who can access what", "permissions", "least privilege"
    STSTemporary security credentials via AssumeRole"cross-account access", "temporary credentials", "federation"
    CognitoUser authentication for web/mobile apps"sign in for app users", "user pool", "social login"
    KMSManaged encryption key storage and usage"encrypt at rest", "manage keys", "customer managed keys"
    ACMManaged TLS/SSL certificates"HTTPS certificate", "free cert for CloudFront/ALB"
    WAFWeb application firewall, L7 rules"SQL injection", "XSS", "block by IP/country", "rate limiting"
    ShieldDDoS protection"DDoS protection" — Standard (free) or Advanced (paid, $$)
    GuardDutyThreat detection using ML on CloudTrail/DNS/VPC logs"detect threats", "anomalous behaviour", "no agents"
    InspectorAutomated security assessment for EC2/containers"vulnerability scanning", "CVE detection"
    MacieML-based sensitive data discovery in S3"PII in S3", "data classification", "GDPR"
    Secrets ManagerStore and auto-rotate secrets (API keys, DB passwords)"rotate credentials", "store secrets"
    Parameter StoreConfiguration store, simpler than Secrets Manager, free tier"config values", "no rotation needed", "lower cost"
    Organizations + SCPMulti-account management; SCPs restrict what accounts can do"multi-account", "prevent accounts from...", "guardrails"

    Application Integration

    ServiceWhat it isExam trigger phrase
    SQSManaged message queue — decouples producers from consumers"decouple", "buffer", "async processing", "queue"
    SNSPub/sub messaging — one-to-many fan-out"fan-out", "notify multiple", "push notification"
    EventBridgeEvent bus for routing events between AWS services and SaaS"event-driven", "schedule", "SaaS integration"
    Step FunctionsVisual workflow orchestration for Lambda and services"workflow", "orchestrate", "long-running process", "state"
    Kinesis Data StreamsReal-time data streaming, sub-second latency"real-time analytics", "streaming", "custom consumers"
    Kinesis Data FirehoseLoad streaming data to S3/Redshift/OpenSearch"stream to S3", "no custom code needed", "near real-time"
    MSK (Kafka)Managed Apache Kafka"Kafka", "existing Kafka workload"
    AppSyncManaged GraphQL API"GraphQL"
    Tip:SQS vs SNS vs EventBridge: SQS queues one-to-one (pull). SNS broadcasts one-to-many (push). EventBridge routes events by rules to multiple targets. Questions about "decoupling" almost always want SQS.

    High Availability & Resilience Patterns

    • Multi-AZ RDS: synchronous standby replica — automatic failover, same region
    • Read Replicas: asynchronous — for read scaling, not failover (can be cross-region)
    • Auto Scaling Groups: replace unhealthy instances, scale in/out based on metrics
    • Multi-region active-active: Route 53 latency routing + data replication required
    • S3 Cross-Region Replication: must enable versioning on both buckets first
    • DynamoDB Global Tables: multi-region active-active NoSQL
    • RTO vs RPO: RTO = time to recover; RPO = data loss tolerance. Lower both = higher cost
    • Pilot Light: minimal standby (just DB replication). Warm Standby: scaled-down running copy. Multi-site Active-Active: full capacity in all regions

    Cost Optimisation Quick Reference

    ScenarioRight choice
    Steady, predictable workload (1–3 years)Reserved Instances or Savings Plans
    Fault-tolerant, interruptible workloadsSpot Instances (up to 90% cheaper)
    Infrequent batch jobsSpot or On-Demand — no commitment
    Data rarely accessedS3 Glacier Deep Archive
    Reduce data transfer costsCloudFront in front of S3 (transfers to CF edge are free)
    Rightsize EC2AWS Compute Optimizer recommendations
    Shut down unused resourcesAWS Cost Explorer + Budgets alerts
    Key fact:Savings Plans vs Reserved Instances: Savings Plans are more flexible (commit to $/hour spend, not specific instance type). Compute Savings Plans apply across EC2, Lambda, and Fargate.

    Ready to Practice the full AWS SAA-C03?

    Graded results, exam simulation, and detailed guidance on every question.

    Sign up freePractice now

    About this exam

    65 questions · 130 minutes · pass 720/1000
    Pass mark: 720 / 1000

    Quick links

    Practice examsBrowse topicsOfficial exam page

    Exam topics

    Design Secure Architectures30%Design Resilient Architectures26%Design High-Performing Architectures24%Design Cost-Optimized Architectures20%

    Related reading

    SAA vs SAP: What Actually Changes at the AWS Professional Level

    5 min read

    How to Think Through an AWS Architecture Question in 90 Seconds

    5 min read

    AWS Retires Security Specialty v2 and MLS Is Gone by March 2026 — What It Means for Your Cert Path

    4 min read

    SAA-C03 Pass Rate Is 60-68% — Here Is What Separates Candidates Who Pass

    5 min read

    SAA-C03 Walkthrough: Cost-Optimised Static Site with S3 and CloudFront

    6 min read

    ExpertMinds

    Ace your certifications with Practice Exams and AI assistance.

    • Browse Exams
    • For Educators
    • Blog
    • Privacy Policy
    • Terms of Service
    • Cookie Policy
    • Support
    • AWS SAA Exam Prep
    • PMI PMP Exam Prep
    • CPA Exam Prep
    • GCP PCA Exam Prep

    © 2026 TinyHive Labs. Company number 16262776.