interface CfnLogicallyAirGappedBackupVaultMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Backup.Mixins.CfnLogicallyAirGappedBackupVaultMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackup/mixins#CfnLogicallyAirGappedBackupVaultMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.backup.mixins.CfnLogicallyAirGappedBackupVaultMixinProps |
Python | aws_cdk.mixins_preview.aws_backup.mixins.CfnLogicallyAirGappedBackupVaultMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_backup » mixins » CfnLogicallyAirGappedBackupVaultMixinProps |
Properties for CfnLogicallyAirGappedBackupVaultPropsMixin.
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 cfnLogicallyAirGappedBackupVaultMixinProps: backup_mixins.CfnLogicallyAirGappedBackupVaultMixinProps = {
accessPolicy: accessPolicy,
backupVaultName: 'backupVaultName',
backupVaultTags: {
backupVaultTagsKey: 'backupVaultTags',
},
encryptionKeyArn: 'encryptionKeyArn',
maxRetentionDays: 123,
minRetentionDays: 123,
mpaApprovalTeamArn: 'mpaApprovalTeamArn',
notifications: {
backupVaultEvents: ['backupVaultEvents'],
snsTopicArn: 'snsTopicArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| access | any | The backup vault access policy document in JSON format. |
| backup | string | The name of a logical container where backups are stored. |
| backup | { [string]: string } | The tags to assign to the vault. |
| encryption | string | The server-side encryption key that is used to protect your backups; for example, arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab . |
| max | number | The maximum retention period that the vault retains its recovery points. |
| min | number | This setting specifies the minimum retention period that the vault retains its recovery points. |
| mpa | string | The Amazon Resource Name (ARN) of the MPA approval team to associate with the backup vault. |
| notifications? | IResolvable | Notification | Returns event notifications for the specified backup vault. |
accessPolicy?
Type:
any
(optional)
The backup vault access policy document in JSON format.
backupVaultName?
Type:
string
(optional)
The name of a logical container where backups are stored.
Logically air-gapped backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
backupVaultTags?
Type:
{ [string]: string }
(optional)
The tags to assign to the vault.
encryptionKeyArn?
Type:
string
(optional)
The server-side encryption key that is used to protect your backups; for example, arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab .
If this field is left blank, AWS Backup will create an AWS owned key to be used to encrypt the content of the logically air-gapped vault. The ARN of this created key will be available as Fn::GetAtt output.
maxRetentionDays?
Type:
number
(optional)
The maximum retention period that the vault retains its recovery points.
minRetentionDays?
Type:
number
(optional)
This setting specifies the minimum retention period that the vault retains its recovery points.
The minimum value accepted is 7 days.
mpaApprovalTeamArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the MPA approval team to associate with the backup vault.
This cannot be changed after it is set from the CloudFormation template.
notifications?
Type:
IResolvable | Notification
(optional)
Returns event notifications for the specified backup vault.

.NET
Go
Java
Python
TypeScript