Back to Blog

Centralized Data Protection & Backup Governance for the SAP-C02 Exam: AWS Backup, Vault Lock, Cross-Region & Cross-Account Copy

A practitioner's guide to the backup and data-protection questions the SAP-C02 exam actually tests. Learn how AWS Backup centralizes protection across accounts, how Vault Lock enforces immutable retention, and how backup policies, cross-Region copy, and cross-account vaults defend against ransomware and rogue admins.

By Sailor Team , September 6, 2026

The SAP-C02 exam treats backup very differently from the associate-level SAA-C03. At the associate level a backup question is usually “how do I take a snapshot?” At the professional level the question is almost always organizational: “A company runs 400 accounts under AWS Organizations. Auditors require that every production database is backed up daily, copied to a second Region, retained for seven years, and cannot be deleted early — even by an account administrator. Which solution meets these requirements with the least operational overhead?” That single sentence hides five different concepts, and the tempting per-account, per-service snapshot answer is almost always wrong.

This guide covers the data-protection material the SAP-C02 tests through the lens of governance at scale: centralizing backups with AWS Backup, enforcing immutability with Vault Lock, defending against ransomware and rogue admins with cross-account copy, and rolling policies out across hundreds of accounts through AWS Organizations. If you are building your overall study plan, anchor this to the AWS Solutions Architect Professional guide for 2026; data protection sits inside “Design for organizational complexity” and reinforces the disaster recovery and high availability material directly.

Backup Is Not Disaster Recovery — Know the Difference the Exam Draws

The single most common conceptual mistake candidates make is conflating backup with disaster recovery. The exam rewards a sharp distinction.

ConceptWhat it protects againstPrimary metricTypical service
BackupData loss, corruption, accidental deletion, ransomware, compliance retentionRetention period, RPOAWS Backup
Disaster RecoveryLoss of a whole Region or major infrastructure failureRTO and RPOMulti-Region architecture, Route 53 failover
High AvailabilityLoss of an AZ or instance within a RegionUptime, failover timeMulti-AZ, Auto Scaling

Backup answers “can I restore this data to a point in time?” DR answers “can I run my workload somewhere else quickly?” A pilot-light DR strategy is not a backup strategy, and a seven-year immutable backup is not a DR strategy. When a question mentions audit, retention, compliance, ransomware, or accidental deletion, it is a backup question. When it mentions RTO, failover, or Region outage, route to the DR strategies instead.

Why Per-Service Snapshots Fail at Professional Scale

Every AWS data service has its own native backup mechanism: EBS snapshots, RDS automated backups, DynamoDB point-in-time recovery, EFS backups, Aurora snapshots, S3 versioning. At small scale you can script these individually. At professional scale — dozens of services across hundreds of accounts — the per-service approach collapses for reasons the exam probes:

  • No central visibility. You cannot answer “is every production resource backed up?” without querying each service in each account.
  • Inconsistent retention. Every team invents its own schedule; auditors find gaps.
  • No cross-account isolation. Snapshots live in the same account as the resource, so a compromised or malicious admin can delete both the data and its backups.
  • No enforcement. Nothing stops a new account from launching a database with no backup at all.

The professional-level answer to almost every one of these is the same managed service: AWS Backup.

AWS Backup: The Centralized Control Plane

AWS Backup is a fully managed service that centralizes and automates data protection across AWS services and accounts. Instead of configuring backups per resource, you define policy once and apply it broadly. The exam expects you to know its building blocks.

Backup Plan

A backup plan is the policy: it defines when backups run (schedule / frequency), how long they are kept (lifecycle), where they are stored (target vault), and optionally where they are copied (cross-Region, cross-account). One plan can protect many resources.

Backup Vault

A backup vault is the container where recovery points are stored, encrypted with a KMS key. Vaults are the unit of access control and — critically — the unit of immutability via Vault Lock. Separating production backups into their own vault (ideally in a separate account) is a recurring exam pattern.

Resource Assignment

Rather than tagging every resource by hand, AWS Backup lets you assign resources to a plan by tag (for example, backup-policy = production) or by resource type. This is the mechanism that makes “back up everything tagged production” a one-line policy — a favourite exam solution because it scales automatically to new resources.

Lifecycle: Warm to Cold Storage

A backup plan’s lifecycle can transition recovery points to cold storage to cut cost, then expire them at the end of retention. The exam fact worth memorizing: a recovery point must stay in warm storage for a minimum of 90 days before it can move to cold storage, and cold-storage backups have a minimum retention that affects early-deletion cost. For long compliance retention (7–10 years), cold storage is the cost-optimized answer — which ties into cost optimization strategies.

Supported Resources

AWS Backup protects EBS, EC2 (whole instances), RDS, Aurora, DynamoDB, EFS, FSx, Storage Gateway volumes, S3, VMware workloads, and more. When a question lists a mix of databases and file systems and asks for one service to protect them all consistently, AWS Backup is the intended answer.

Vault Lock: Immutability and WORM Compliance

The highest-value SAP-C02 concept in this topic is AWS Backup Vault Lock. It enforces a write-once-read-many (WORM) model on a backup vault so that recovery points cannot be deleted or their retention shortened before the defined period — even by the account root user or an administrator with full IAM permissions. This is the control that satisfies “backups must not be deletable” and “protect against ransomware and insider threat.”

Vault Lock has two modes, and the difference is a classic exam distinction:

ModeCan you undo it?Grace/cooling-off periodUse case
Governance modeYes — users with backup:* and explicit permissions can change or remove the lockNone requiredGuardrails you may still adjust; prevents accidental deletion
Compliance modeNo — cannot be removed or weakened by anyone, including root, once lockedYes — a cooling-off window before it becomes immutableRegulatory WORM: SEC 17a-4, HIPAA, financial retention

The word that maps to Compliance mode is regulatory or immutable / cannot be deleted by anyone. If the scenario merely wants to prevent accidental deletion but keep flexibility, that is Governance mode. The cooling-off period in compliance mode exists precisely so that a misconfiguration (a wrong retention value) can be corrected before the lock becomes permanent — a detail the exam likes to test.

Exam signal: “even the root user or administrator must not be able to delete backups before the retention period” → Vault Lock in Compliance mode. Nothing else in the AWS backup toolkit provides that guarantee.

Cross-Region Copy: Surviving a Regional Failure

Backups that live only in the same Region as the source data do not protect against a Region-level event. A backup plan can automatically copy recovery points to a vault in another Region. This is configured as a copy action within the plan — no external scripting.

Key exam facts about cross-Region copy:

  • The destination vault has its own KMS key; the copy is re-encrypted with the destination key. This matters for questions about key management and blast-radius isolation.
  • Copy actions have their own independent lifecycle and retention, so you can keep local copies short-lived and cross-Region copies long-lived.
  • Cross-Region copy addresses RPO for Region loss but is still backup, not live DR failover.

When a scenario says “retain a second copy in another Region for resilience,” reach for a cross-Region copy action in the backup plan, not a custom Lambda that copies snapshots.

Cross-Account Copy: The Ransomware and Rogue-Admin Defense

Cross-Region copy protects against a Region outage. Cross-account copy protects against something the exam increasingly emphasizes: a compromised or malicious account. If an attacker gains admin access to the production account, they can delete the data and, if backups live in the same account, the backups too. The defense is to copy recovery points into a separate, isolated backup account that production admins cannot reach.

This gives you a “backup account” or “vault account” pattern:

  • Production accounts run workloads and take backups locally.
  • A backup plan copies recovery points to a centralized backup vault in a dedicated account in a different organizational unit.
  • That vault uses Vault Lock in Compliance mode, so even if the production account is fully compromised, the isolated copies remain immutable.

Cross-account copy requires the destination vault to have a resource-based access policy that permits the source account to copy in, and it uses AWS Organizations to enable cross-account management. Combine cross-account and cross-Region copy and you have the gold-standard, exam-preferred answer for “protect backups against both Region loss and account compromise.”

ThreatSame-account backupCross-Region copyCross-account copyVault Lock (Compliance)
Accidental deletion of sourceProtectsProtectsProtectsProtects
Region outageNoProtectsDepends on RegionNo
Malicious/compromised adminNoNoProtectsProtects
Ransomware encrypting/deleting backupsNoNoProtectsProtects
Regulatory WORM retentionNoNoNoProtects

The pattern to internalize: for a hardened enterprise posture you often need all of the above together — cross-Region and cross-account copy into a locked vault. That layered answer is what “least operational overhead while meeting all requirements” is pointing at.

Backup Policies Across AWS Organizations

The final piece of governance at scale is enforcement. Configuring backup plans account-by-account does not scale to hundreds of accounts and cannot guarantee coverage of future accounts. AWS Backup policies — a policy type in AWS Organizations — solve this. You define a backup plan centrally in the management (or a delegated administrator) account and attach it to an organizational unit (OU); every account in that OU, including accounts created later, automatically inherits the plan.

This connects to the broader multi-account governance model:

  • Service Control Policies (SCPs) set permission guardrails — for example, denying anyone the ability to delete backup vaults or stop AWS Backup.
  • Backup policies push the backup configuration itself down the OU tree.
  • A delegated administrator account lets a central backup/security team manage protection without using the management account for daily operations.

When a question says “ensure every current and future account automatically backs up tagged resources with no per-account setup,” the answer is AWS Backup policies applied at the OU level through AWS Organizations, often paired with an SCP that prevents tampering. Combining preventive SCPs with backup policies is a textbook security and compliance scenario.

Native Service Backups You Still Must Know

AWS Backup centralizes protection, but the exam still tests the native mechanisms because they explain what AWS Backup orchestrates and appear in scenarios that predate or bypass it.

ServiceNative protectionPoint-in-time recovery?Note the exam cares about
RDS / AuroraAutomated backups + manual snapshotsYes, within retention (max 35 days automated)Automated backups deleted when the DB instance is deleted unless you take a final snapshot
DynamoDBPoint-in-time recovery (PITR) + on-demand backupsYes, last 35 days with PITRPITR must be explicitly enabled; on-demand backups have no performance impact
EBSSnapshots (incremental, stored in S3)No — snapshot points onlyIncremental storage; can be copied cross-Region and shared cross-account
S3Versioning + replication + Object LockN/AS3 Object Lock is S3’s own WORM/immutability — the S3 analog of Vault Lock
EFS / FSxAWS Backup integrationN/AManaged almost entirely through AWS Backup

Two distinctions the exam loves:

  • DynamoDB PITR vs on-demand backup. PITR gives continuous recovery to any second in the last 35 days; on-demand gives a durable snapshot retained until you delete it. “Recover to any point in time in the last month” → PITR. “Long-term archival snapshot” → on-demand.
  • S3 Object Lock vs Backup Vault Lock. Object Lock enforces WORM on individual S3 objects; Vault Lock enforces WORM on backup recovery points. If the data is in S3 already and must be immutable, the answer is S3 Object Lock in Compliance mode — not AWS Backup.

Putting It Together: A Reference Enterprise Pattern

A defensible, exam-aligned enterprise backup architecture looks like this:

  1. Centralize with AWS Backup, assigning resources by the backup-policy tag so coverage scales automatically.
  2. Enforce org-wide using AWS Backup policies attached at the OU level, so every current and future account inherits protection.
  3. Isolate by copying recovery points to a dedicated backup account in a separate OU (cross-account copy).
  4. Regionalize by also copying to a second Region (cross-Region copy) for resilience against a Region event.
  5. Immutably retain the isolated vault with Vault Lock in Compliance mode to satisfy WORM/regulatory requirements and defeat ransomware.
  6. Harden with SCPs that deny deletion of vaults and disabling of AWS Backup, even to account admins.
  7. Cost-optimize long retention by transitioning recovery points to cold storage after the 90-day warm-storage minimum.

Each layer answers a specific threat, and the exam question usually tells you which threats are in scope. Read for the keywords — audit, retention, ransomware, Region, account compromise, future accounts — and add exactly the layers those words require.

Practice the Way the Exam Tests You

Reading about backup governance and recognizing the right layered answer under time pressure are different skills. SAP-C02 questions are long, multi-requirement, and full of plausible distractors — the per-account Lambda that “works” but is high-overhead, the same-account snapshot that misses the ransomware requirement. The fastest way to build the pattern-matching reflex is repeated exposure to realistic scenario questions with explanations that tell you why the layered answer wins.

That is exactly what the AWS Solutions Architect Professional (SAP-C02) mock exam bundle is built for: 8 full-length timed exams of professional-difficulty scenario questions, each with a detailed explanation that draws the distinctions this article covers. Use it to pressure-test your judgment on backup, DR, and organizational-complexity questions before exam day, alongside a focused plan to pass SAP-C02 on your first attempt and the six pillars of the Well-Architected Framework.

Frequently Asked Questions

What is the difference between AWS Backup Vault Lock Governance mode and Compliance mode?

Governance mode prevents accidental changes but can be undone by users with sufficient permissions. Compliance mode is truly immutable — once the cooling-off period passes, no one, including the root user, can delete recovery points or shorten retention before the defined period. Choose Compliance mode for regulatory WORM requirements and ransomware defense; choose Governance mode when you want guardrails you can still adjust.

Does AWS Backup protect against ransomware?

It can, when layered correctly. Copy recovery points to a separate backup account (cross-account copy) so a compromised production account cannot reach them, and apply Vault Lock in Compliance mode so the copies cannot be deleted or altered. Same-account, mutable backups do not protect against ransomware, because an attacker with admin access could delete them.

How do I ensure every account in my organization backs up its resources automatically?

Use AWS Backup policies in AWS Organizations. Define the backup plan centrally and attach it to an organizational unit; every account in that OU — including accounts created in the future — inherits the plan with no per-account configuration. Pair it with an SCP that prevents disabling AWS Backup or deleting vaults.

What is the difference between backup and disaster recovery on the SAP-C02 exam?

Backup restores data to a point in time and protects against corruption, deletion, ransomware, and compliance gaps; its metric is retention/RPO. Disaster recovery restores an entire workload after a major failure, usually a Region loss; its metrics are RTO and RPO. Backup keywords are retention, audit, immutable, ransomware; DR keywords are failover, RTO, Region outage.

When should I use S3 Object Lock instead of AWS Backup Vault Lock?

Use S3 Object Lock when the data that must be immutable already lives in S3 objects — for example, compliance logs or archives. Use Backup Vault Lock when you are protecting recovery points created by AWS Backup (EBS, RDS, DynamoDB, EFS, and so on). Both offer Governance and Compliance modes, but they lock different things.

How does cross-Region copy differ from cross-account copy?

Cross-Region copy places a backup in a second Region to survive a Region-level event; cross-account copy places a backup in a separate account to survive an account compromise or malicious admin. They address different threats, so a hardened enterprise design often uses both together, copying into an isolated backup account in a second Region with Vault Lock applied.

Conclusion

Backup at the professional level is a governance problem, not a snapshot problem. The SAP-C02 rewards candidates who reach past per-service, per-account scripting for the managed, org-wide answer: AWS Backup to centralize, backup policies to enforce coverage across every current and future account, cross-Region and cross-account copy to isolate against Region loss and account compromise, and Vault Lock in Compliance mode to make retention truly immutable against ransomware and insider threat. Learn to read a scenario for the specific threats it names and add exactly the layers those threats require — that is the judgment the exam is measuring. Reinforce it with realistic timed practice, and backup governance turns from a trap into reliable points.

Limited Time Offer: Get 80% off all Mock Exam Bundles | Sale ends in 7 days. Start learning today.

Claim Now