Below the disaster-recovery strategy tiers the SAA-C03 loves, there is a layer of plain mechanics the exam quietly depends on: how snapshots are stored, how a backup reaches a second Region, and what makes a backup impossible to delete. Miss these and the strategy questions above them get harder than they should. The diagram traces the whole path — an EBS volume, its incremental snapshots in Amazon S3, a cross-Region copy, and an AWS Backup vault with a locked retention policy.
Snapshots are incremental, and they live in S3
The single most tested fact here: EBS snapshots are incremental. The first snapshot of a volume is a full copy; every later snapshot stores only the blocks that changed since the previous one, in Amazon S3 that AWS manages on your behalf — you never see the bucket. So the storage cost of a nightly schedule tracks your change rate, not your volume size. A useful corollary the exam plants as a distractor: deleting an old snapshot does not corrupt newer ones, because AWS keeps any blocks the later snapshots still reference.
Getting a copy where you need it
A snapshot is Regional and lives in one account. When a requirement says “restore in a second Region after a Region outage”, the answer is a cross-Region snapshot copy; when it says “keep an isolated audit copy”, the answer is a cross-account copy or share. These are the two moves that appear whenever a scenario reaches past a single Region or account — and neither is automatic, so any option claiming snapshots are “global” is wrong.
Automating the schedule
Two services create and expire backups on a cadence. Amazon Data Lifecycle Manager (DLM) is the EBS-native, tag-driven scheduler at no extra charge — reach for it when the scope is EBS only and the goal is to remove manual work and code. AWS Backup is the centralized plane: one plan enforcing backups and retention across RDS, EBS, DynamoDB and more, into a backup vault. When a scenario spans several services with a single governance policy, that breadth points to a Backup plan rather than DLM.
Frequency sets your RPO; retention sets how long you keep it
Keep two dials separate. Backup frequency decides your recovery point objective — hourly snapshots cap worst-case loss at an hour, so a one-hour tolerance means scheduling at least that often. Retention and lifecycle decide how long copies survive and when they expire, with automatic transitions to cold storage to save cost. A stem that talks about data loss is asking about frequency; a stem about keeping or cost over time is asking about retention. Answering one with the other is the classic trap.
Restoring to the right point
For RDS, distinguish two restores. A snapshot restore returns you to the snapshot’s timestamp — fine for coarse recovery. Point-in-time restore (PITR) replays automated backups plus transaction logs to land on any second within the retention window, as a new instance. When corruption happens at a known moment and the requirement is “recover to just before it”, PITR is the precise tool.
Making backups un-deletable
Finally, immutability. When the requirement is that no one — not an administrator, not root, not stolen credentials — can delete a backup or shorten its retention early, the answer is a Backup vault protected by Vault Lock in compliance mode: write-once-read-many, enforced until retention expires. An IAM deny is a control someone privileged can edit; Vault Lock is a guarantee.
How to use the seven scenarios below
Answer each before opening the explanation, then name the requirement word that decided it — “second Region”, “cannot be deleted early”, “at most one hour”, “to a specific second”. Every explanation isolates that constraint and takes the plausible distractors apart. For the strategy tiers that sit on top of these mechanics, see Disaster recovery strategies and the Design Resilient Architectures overview.
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.