Interface CfnBackupVaultMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBackupVaultMixinProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.backup.*;
Object accessPolicy;
CfnBackupVaultMixinProps cfnBackupVaultMixinProps = CfnBackupVaultMixinProps.builder()
.accessPolicy(accessPolicy)
.backupVaultName("backupVaultName")
.backupVaultTags(Map.of(
"backupVaultTagsKey", "backupVaultTags"))
.encryptionKeyArn("encryptionKeyArn")
.lockConfiguration(LockConfigurationTypeProperty.builder()
.changeableForDays(123)
.maxRetentionDays(123)
.minRetentionDays(123)
.build())
.notifications(NotificationObjectTypeProperty.builder()
.backupVaultEvents(List.of("backupVaultEvents"))
.snsTopicArn("snsTopicArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBackupVaultMixinPropsstatic final classAn implementation forCfnBackupVaultMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA resource-based policy that is used to manage access permissions on the target backup vault.default StringThe name of a logical container where backups are stored.The tags to assign to the backup vault.default ObjectA server-side encryption key you can specify to encrypt your backups from services that support full AWS Backup management;default ObjectConfiguration for AWS Backup Vault Lock .default ObjectThe SNS event notifications for the specified backup vault.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessPolicy
A resource-based policy that is used to manage access permissions on the target backup vault.- See Also:
-
getBackupVaultName
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.
- See Also:
-
getBackupVaultTags
The tags to assign to the backup vault.- See Also:
-
getEncryptionKeyArn
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
- See Also:
-
getLockConfiguration
Configuration for AWS Backup Vault Lock .Returns union: either
IResolvableorCfnBackupVaultPropsMixin.LockConfigurationTypeProperty- See Also:
-
getNotifications
The SNS event notifications for the specified backup vault.Returns union: either
IResolvableorCfnBackupVaultPropsMixin.NotificationObjectTypeProperty- See Also:
-
builder
- Returns:
- a
CfnBackupVaultMixinProps.BuilderofCfnBackupVaultMixinProps
-