AWS SAA SERVICES CHEAT SHEET

AWS SAA-C03 CERTIFICATION Ultimate Keyword Cheat Sheet

Studying for the AWS Certified Solutions Architect – Associate (SAA-C03) exam can feel like trying to drink from a firehose. With hundreds of services and architectural variations, the sheer volume of information is overwhelming.

However, passing the exam isn’t about memorizing every whitepaper—it’s about pattern recognition.

The AWS SAA exam uses specific, highly repeatable keyword triggers in its question stems. If you spot a particular phrase, the examiner is pointing you directly toward a specific service or architectural pattern. This practical guide breaks down the core AWS services into cheat-sheet tables and details the “trap pairs” AWS uses to trick you, giving you an absolute edge on exam day.

Goal: See the keyword → instantly know the service → eliminate distractors.

COMPUTE

ServiceTrigger KeywordsExam ShortcutCommon Trap
EC2Reserved, Spot, Dedicated Host, AMI, User Data, Savings PlansTraditional VM-based computeInstance Store is ephemeral
LambdaServerless, event-driven, trigger, FaaS, S3 trigger, SQS triggerNo servers to manageMax runtime = 15 minutes
ECSContainers, Docker, task definitionAWS-native container platformNot Kubernetes
EKSKubernetes, k8s, podsManaged KubernetesMore operational complexity
FargateServerless containers, no infrastructure managementContainers without managing EC2Still uses ECS or EKS underneath
ALBHTTP, HTTPS, path routing, host routing, WebSocketLayer 7 load balancerNo static IP
NLBTCP, UDP, static IP, ultra-low latencyLayer 4 load balancerNo path-based routing
ASGAuto scaling, target tracking, desired capacityAutomatic EC2 scalingScaling policy types matter
Elastic BeanstalkUpload code, managed platform, PaaSFast app deploymentInfrastructure still visible

Compute Memory Rules

  • Spot = Cheapest but interruptible
  • Reserved = Long-term discount
  • Dedicated Host = Compliance / licensing
  • Lambda = Maximum 15-minute runtime
  • Fargate = Containers with no EC2 management
  • ALB = HTTP routing intelligence
  • NLB = Extreme performance + static IP

STORAGE

ServiceTrigger KeywordsExam ShortcutCommon Trap
S3Bucket, object storage, static website, lifecycle, replicationUnlimited object storageNot a file system
S3 GlacierArchive, compliance, cold storage, retain 7 yearsLong-term archivalRetrieval can take hours
EBSBlock storage, IOPS, boot volume, snapshotsStorage for one EC2 instanceLocked to one AZ
EFSShared Linux storage, NFS, multiple EC2sMulti-AZ shared file systemLinux only
FSx for WindowsSMB, Active Directory, Windows sharesWindows-native shared storageNot NFS
FSx for LustreHPC, ML training, parallel file systemHigh-performance compute workloadsExpensive for simple workloads
Storage GatewayHybrid storage, on-prem accessOngoing hybrid integrationNot for one-time migration

Storage Tier Shortcuts

S3 Storage Classes

Storage ClassBest For
StandardFrequently accessed data
Standard-IAInfrequent access
One Zone-IACheap single-AZ storage
Intelligent-TieringUnknown access patterns
Glacier InstantFast archive retrieval
Glacier FlexibleCheap archive
Glacier Deep ArchiveCheapest long-term archive

Storage Memory Rules

  • EBS = One EC2
  • EFS = Many Linux EC2s
  • FSx Windows = Windows + SMB + AD
  • Glacier = Compliance retention
  • Storage Gateway = Hybrid access
  • DataSync = Migration

DATABASES

ServiceTrigger KeywordsExam ShortcutCommon Trap
RDSRelational, SQL, MySQL, PostgreSQL, OLTPManaged relational DBRead Replica ≠ HA
AuroraGlobal DB, Serverless, high performanceAWS-optimized relational DBMore expensive
DynamoDBNoSQL, key-value, single-digit ms, Global TablesServerless NoSQLPartition key design matters
ElastiCache RedisCache, session store, pub/subIn-memory cacheData persistence options vary
RedshiftOLAP, BI, analytics, petabytesData warehouseNot transactional
NeptuneRelationships, graph, fraud, recommendationsGraph databaseNot relational
DocumentDBMongoDB, JSON documentsManaged document databaseCompatibility limitations
TimestreamIoT, telemetry, metrics, time-seriesTime-stamped dataSpecialized workload

Critical Database Exam Traps

Confusing PairReal Difference
Multi-AZ vs Read ReplicaMulti-AZ = HA, Read Replica = Read Scaling
DynamoDB vs RDSNoSQL vs Relational
Redshift vs RDSAnalytics vs Transactions
ElastiCache Redis vs MemcachedRedis supports persistence + replication

Database Memory Rules

  • Multi-AZ = Failover
  • Read Replica = Read scaling
  • Aurora Global = Cross-region replication
  • DAX = DynamoDB cache
  • Redshift = Historical analytics
  • Neptune = Highly connected data

NETWORKING

ServiceTrigger KeywordsExam ShortcutCommon Trap
VPCCIDR, subnet, security group, NACLPrivate AWS networkSG vs NACL confusion
Route 53DNS, latency routing, failover, weightedManaged DNSRouting policies matter
CloudFrontCDN, edge cache, low latencyContent cachingNot routing optimization
API GatewayServerless API, throttling, API keyManaged API layerOften paired with Lambda
Transit GatewayMany VPCs, centralized routingHub-and-spoke networkingReplaces complex peering
Direct ConnectDedicated connection, consistent bandwidthPrivate AWS connectivityNot encrypted by default
Site-to-Site VPNIPSec, encrypted internet connectionFast hybrid setupVariable latency
Global AcceleratorAnycast IP, AWS backbone, TCP/UDPTraffic routing optimizationNo caching

Networking Memory Rules

  • Security Groups = Stateful
  • NACLs = Stateless
  • NAT Gateway = Private subnet outbound internet
  • Transit Gateway = Large-scale VPC connectivity
  • CloudFront = Caching
  • Global Accelerator = Routing

Route 53 Routing Policies

PolicyUse Case
SimpleSingle resource
WeightedA/B testing
LatencyFastest region
FailoverDisaster recovery
GeolocationCountry-based routing
GeoproximityDistance + bias routing
Multi-valueBasic DNS load balancing

SECURITY

ServiceTrigger KeywordsExam ShortcutCommon Trap
IAMRoles, policies, least privilege, SCPIdentity and permissionsSCPs only restrict
KMSEncryption, CMK, SSE-KMS, key rotationEncryption managementEnvelope encryption concept
Secrets ManagerSecret rotation, DB credentialsAutomatic secret rotationHigher cost
WAFSQL injection, XSS, web ACLLayer 7 protectionNot DDoS protection
ShieldDDoS, volumetric attacksLayer 3/4 protectionShield Advanced is expensive
GuardDutyThreat detection, anomalies, crypto miningML-based threat detectionNo blocking capability
MaciePII, sensitive S3 data, GDPRS3 data classificationS3 only
InspectorCVE scanning, vulnerability assessmentAutomated security scanningNot runtime protection
CognitoUser pools, OAuth, federated loginApp authenticationUser Pool vs Identity Pool

Security Memory Rules

  • IAM Role = Temporary credentials
  • SCP = Organization-wide guardrails
  • KMS = Auditable encryption
  • WAF = Web attack protection
  • Shield = DDoS protection
  • Macie = PII discovery in S3
  • Cognito User Pool = Authentication
  • Cognito Identity Pool = AWS credentials

INTEGRATION & MESSAGING

ServiceTrigger KeywordsExam ShortcutCommon Trap
SQSQueue, decouple, async, DLQReliable message queueFIFO throughput limits
SNSFanout, publish-subscribe, notificationsPush messagingNot persistent queueing
EventBridgeEvent bus, cron, SaaS integrationsEvent-driven architectureFormerly CloudWatch Events
Step FunctionsWorkflow, orchestration, retriesCoordinate multiple servicesState machine concepts
KinesisStreaming, clickstream, real-time ingestionReal-time data streamingStreams vs Firehose

Integration Memory Rules

  • SNS = One-to-many push
  • SQS = Reliable queue
  • EventBridge = Event routing
  • Step Functions = Workflow orchestration
  • Kinesis Streams = Real-time custom consumers
  • Firehose = Managed delivery to S3/Redshift

ANALYTICS

ServiceTrigger KeywordsExam ShortcutCommon Trap
AthenaQuery S3, serverless SQL, ad hocSQL directly on S3Pay per TB scanned
GlueETL, crawler, schema discoveryData transformationNot a query engine
OpenSearchFull-text search, Kibana, logsSearch and log analyticsOperational overhead
EMRSpark, Hadoop, MapReduceBig data processingCluster management
QuickSightDashboard, BI, visualizationAWS BI dashboardsSPICE terminology

Analytics Memory Rules

  • Athena = Query S3 instantly
  • Glue = ETL + Catalog
  • OpenSearch = Search logs
  • EMR = Spark/Hadoop processing
  • QuickSight = Dashboards

MIGRATION

ServiceTrigger KeywordsExam ShortcutCommon Trap
SnowballOffline transfer, petabytes, ship deviceLarge offline migrationNot real-time sync
DMSDatabase migration, minimal downtimeDatabase migrationSCT needed for heterogeneous
DataSyncNFS to S3, SMB to EFSFile migrationNot ongoing hybrid access
MGNLift-and-shift, rehost to EC2Server migrationMinimal modernization

Migration Memory Rules

  • Snowball = Massive offline transfer
  • DMS = Database migration
  • DataSync = File migration
  • Storage Gateway = Ongoing hybrid access
  • MGN = Lift and shift servers

MONITORING & GOVERNANCE

ServiceTrigger KeywordsExam ShortcutCommon Trap
CloudWatchMetrics, alarms, logs, dashboardsMonitoring platformRAM/disk metrics need agent
CloudTrailAPI audit, compliance, who did whatAWS activity logsData events cost extra
ConfigCompliance, drift, resource historyResource configuration trackingNot API auditing
X-RayDistributed tracing, latency bottlenecksMicroservice tracingRequires instrumentation
Health DashboardAWS outages, personal health eventsService health visibilityGlobal vs account-specific

Monitoring Memory Rules

  • CloudTrail = WHO did WHAT
  • Config = WHAT changed
  • CloudWatch = Metrics and alarms
  • X-Ray = Distributed tracing
  • Health Dashboard = AWS service issues

HIGHEST-YIELD AWS SAA TRAP QUESTIONS

Trap PairCorrect Understanding
Multi-AZ vs Read ReplicaHA vs Read Scaling
CloudTrail vs ConfigAudit Logs vs Compliance Tracking
SNS vs SQSFanout vs Queue Buffering
CloudFront vs Global AcceleratorCaching vs Routing
Direct Connect vs VPNDedicated line vs Encrypted internet
ALB vs NLBLayer 7 vs Layer 4
EFS vs FSx WindowsLinux NFS vs Windows SMB
Secrets Manager vs Parameter StoreRotation vs Simplicity
DataSync vs Storage GatewayMigration vs Hybrid access
Kinesis Streams vs FirehoseReal-time consumers vs Managed delivery

LAST-MINUTE EXAM CRAM RULES

If you see these words, think these services immediately

KeywordService
DecoupleSQS
FanoutSNS
Serverless APIAPI Gateway + Lambda
KubernetesEKS
No infrastructure managementFargate
Shared Linux storageEFS
SMB + Active DirectoryFSx Windows
Global low-latency contentCloudFront
Real-time streamingKinesis
Audit who changed somethingCloudTrail
Compliance trackingConfig
SQL query on S3Athena
PII discovery in S3Macie
DDoS protectionShield
SQL injection protectionWAF
Long-term archiveGlacier
Petabyte analyticsRedshift
Event orchestrationStep Functions

Pro-Tip for Exam Day

When you read a question stem on the SAA-C03 exam, do not immediately read the options. First, scan the prompt for constraints like “lowest cost,” “minimum operational overhead,” or “highly available.” Highlight the keyword triggers from this cheat sheet, mentally formulate the ideal AWS architecture, and then find the option that matches your pattern.

Good luck, and go clear that exam!

Further Reading: Hidden Costs of Chasing Certifications Nobody Talks About


Discover more from TACETRA

Subscribe to get the latest posts sent to your email.

Let's have a discussion!

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from TACETRA

Subscribe now to keep reading and get access to the full archive.

Continue reading