interface BackupPlanProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Backup.BackupPlanProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#BackupPlanProps |
![]() | software.amazon.awscdk.services.backup.BackupPlanProps |
![]() | aws_cdk.aws_backup.BackupPlanProps |
![]() | aws-cdk-lib » aws_backup » BackupPlanProps |
Properties for a BackupPlan.
Example
const plan = new backup.BackupPlan(this, 'Plan', {
windowsVss: true,
});
Properties
Name | Type | Description |
---|---|---|
backup | string | The display name of the backup plan. |
backup | Backup [] | Rules for the backup plan. |
backup | IBackup | The backup vault where backups are stored. |
windows | boolean | Enable Windows VSS backup. |
backupPlanName?
Type:
string
(optional, default: A CDK generated name)
The display name of the backup plan.
backupPlanRules?
Type:
Backup
[]
(optional, default: use addRule()
to add rules)
Rules for the backup plan.
Use addRule()
to add rules after
instantiation.
backupVault?
Type:
IBackup
(optional, default: use the vault defined at the rule level. If not defined a new
common vault for the plan will be created)
The backup vault where backups are stored.
windowsVss?
Type:
boolean
(optional, default: false)
Enable Windows VSS backup.
See also: https://docs.aws.amazon.com/aws-backup/latest/devguide/windows-backups.html