interface CfnBackupVaultMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Backup.Mixins.CfnBackupVaultMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackup/mixins#CfnBackupVaultMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.backup.mixins.CfnBackupVaultMixinProps |
Python | aws_cdk.mixins_preview.aws_backup.mixins.CfnBackupVaultMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_backup » mixins » CfnBackupVaultMixinProps |
Properties for CfnBackupVaultPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupvault.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as backup_mixins } from '@aws-cdk/mixins-preview/aws-backup';
declare const accessPolicy: any;
const cfnBackupVaultMixinProps: backup_mixins.CfnBackupVaultMixinProps = {
accessPolicy: accessPolicy,
backupVaultName: 'backupVaultName',
backupVaultTags: {
backupVaultTagsKey: 'backupVaultTags',
},
encryptionKeyArn: 'encryptionKeyArn',
lockConfiguration: {
changeableForDays: 123,
maxRetentionDays: 123,
minRetentionDays: 123,
},
notifications: {
backupVaultEvents: ['backupVaultEvents'],
snsTopicArn: 'snsTopicArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| access | any | A resource-based policy that is used to manage access permissions on the target backup vault. |
| backup | string | The name of a logical container where backups are stored. |
| backup | { [string]: string } | The tags to assign to the backup vault. |
| encryption | string | A server-side encryption key you can specify to encrypt your backups from services that support full AWS Backup management; |
| lock | IResolvable | Lock | Configuration for AWS Backup Vault Lock . |
| notifications? | IResolvable | Notification | The SNS event notifications for the specified backup vault. |
accessPolicy?
Type:
any
(optional)
A resource-based policy that is used to manage access permissions on the target backup vault.
backupVaultName?
Type:
string
(optional)
The name of a logical container where backups are stored.
Backup vaults are identified by names that are unique to the account used to create them and the AWS Region where they are created.
backupVaultTags?
Type:
{ [string]: string }
(optional)
The tags to assign to the backup vault.
encryptionKeyArn?
Type:
string
(optional)
A server-side encryption key you can specify to encrypt your backups from services that support full AWS Backup management;
for example, arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab . If you specify a key, you must specify its ARN, not its alias. If you do not specify a key, AWS Backup creates a KMS key for you by default.
To learn which AWS Backup services support full AWS Backup management and how AWS Backup handles encryption for backups from services that do not yet support full AWS Backup , see Encryption for backups in AWS Backup
lockConfiguration?
Type:
IResolvable | Lock
(optional)
Configuration for AWS Backup Vault Lock .
notifications?
Type:
IResolvable | Notification
(optional)
The SNS event notifications for the specified backup vault.

.NET
Go
Java
Python
TypeScript