interface CfnLogicallyAirGappedBackupVaultProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Backup.CfnLogicallyAirGappedBackupVaultProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#CfnLogicallyAirGappedBackupVaultProps |
Java | software.amazon.awscdk.services.backup.CfnLogicallyAirGappedBackupVaultProps |
Python | aws_cdk.aws_backup.CfnLogicallyAirGappedBackupVaultProps |
TypeScript | aws-cdk-lib » aws_backup » CfnLogicallyAirGappedBackupVaultProps |
Properties for defining a CfnLogicallyAirGappedBackupVault.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_backup as backup } from 'aws-cdk-lib';
declare const accessPolicy: any;
const cfnLogicallyAirGappedBackupVaultProps: backup.CfnLogicallyAirGappedBackupVaultProps = {
backupVaultName: 'backupVaultName',
maxRetentionDays: 123,
minRetentionDays: 123,
// the properties below are optional
accessPolicy: accessPolicy,
backupVaultTags: {
backupVaultTagsKey: 'backupVaultTags',
},
notifications: {
backupVaultEvents: ['backupVaultEvents'],
snsTopicArn: 'snsTopicArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| backup | string | The name of a logical container where backups are stored. |
| 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. |
| access | any | The backup vault access policy document in JSON format. |
| backup | { [string]: string } | The tags to assign to the vault. |
| notifications? | IResolvable | Notification | Returns event notifications for the specified backup vault. |
backupVaultName
Type:
string
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.
maxRetentionDays
Type:
number
The maximum retention period that the vault retains its recovery points.
minRetentionDays
Type:
number
This setting specifies the minimum retention period that the vault retains its recovery points.
The minimum value accepted is 7 days.
accessPolicy?
Type:
any
(optional)
The backup vault access policy document in JSON format.
backupVaultTags?
Type:
{ [string]: string }
(optional)
The tags to assign to the vault.
notifications?
Type:
IResolvable | Notification
(optional)
Returns event notifications for the specified backup vault.

.NET
Go
Java
Python
TypeScript