Interface CfnBackupVaultProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBackupVaultProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:14.735Z")
@Stability(Stable)
public interface CfnBackupVaultProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnBackupVault
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.backup.*; Object accessPolicy; CfnBackupVaultProps cfnBackupVaultProps = CfnBackupVaultProps.builder() .backupVaultName("backupVaultName") // the properties below are optional .accessPolicy(accessPolicy) .backupVaultTags(Map.of( "backupVaultTagsKey", "backupVaultTags")) .encryptionKeyArn("encryptionKeyArn") .lockConfiguration(LockConfigurationTypeProperty.builder() .minRetentionDays(123) // the properties below are optional .changeableForDays(123) .maxRetentionDays(123) .build()) .notifications(NotificationObjectTypeProperty.builder() .backupVaultEvents(List.of("backupVaultEvents")) .snsTopicArn("snsTopicArn") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBackupVaultProps
static final class
An implementation forCfnBackupVaultProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnBackupVaultProps.Builder
builder()
default Object
A resource-based policy that is used to manage access permissions on the target backup vault.The name of a logical container where backups are stored.The tags to assign to the backup vault.default String
A server-side encryption key you can specify to encrypt your backups from services that support full AWS Backup management;default Object
Configuration for AWS Backup Vault Lock .default Object
The SNS event notifications for the specified backup vault.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getAccessPolicy
A resource-based policy that is used to manage access permissions on the target backup vault.- 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 .- See Also:
-
getNotifications
The SNS event notifications for the specified backup vault.- See Also:
-
builder
- Returns:
- a
CfnBackupVaultProps.Builder
ofCfnBackupVaultProps
-