Study guide · SAA-C03
26% of the exam by AWS's own published weighting.
The official exam guide breaks this domain into 2 objectives:
A drill pulls every published question in this domain and grades each one as you go. Flashcards skip the grading entirely — read the stem, flip when you're ready, move on.
A web front end receives unpredictable bursts of requests that a slower backend cannot process in real time, and no requests may be lost. Which design best decouples the two tiers?
An SQS queue buffers bursts and lets the backend consume work at its own pace with no lost requests. Synchronous retries still overwhelm a slow backend, vertical scaling has limits and a single point of failure, and a client-side cache does not guarantee delivery.
When an order is placed, several independent systems (email, analytics, and inventory) must each receive the event and process it separately. Which service best delivers the event to all of them?
An SNS topic fans a single published message out to all subscribers, so each system receives its own copy. A shared queue delivers each message to only one consumer, synchronous chaining couples the systems, and database polling adds latency and load.
Unofficial study aid. Not affiliated with, endorsed by, or sponsored by Amazon Web Services.