A backup plan.
import { BackupPlan } from 'aws-cdk-lib/aws-backup';Or use the module namespace:
import * as backup from 'aws-cdk-lib/aws-backup';
// backup.BackupPlanConfiguration passed to the constructor as BackupPlanProps.
backupPlanNameOptionalstringThe display name of the backup plan.
Default: - A CDK generated name
backupPlanRulesOptionalBackupPlanRule[]Rules for the backup plan. Use `addRule()` to add rules after instantiation.
Default: - use `addRule()` to add rules
backupVaultOptionalIBackupVaultRefThe backup vault where backups are stored.
Default: - use the vault defined at the rule level. If not defined a new
common vault for the plan will be created
windowsVssOptionalbooleanEnable Windows VSS backup.
Default: false
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-backup