public static interface CfnBackupVault.NotificationObjectTypeProperty
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.*; NotificationObjectTypeProperty notificationObjectTypeProperty = NotificationObjectTypeProperty.builder() .backupVaultEvents(List.of("backupVaultEvents")) .snsTopicArn("snsTopicArn") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnBackupVault.NotificationObjectTypeProperty.Builder
A builder for
CfnBackupVault.NotificationObjectTypeProperty |
static class |
CfnBackupVault.NotificationObjectTypeProperty.Jsii$Proxy
An implementation for
CfnBackupVault.NotificationObjectTypeProperty |
Modifier and Type | Method and Description |
---|---|
static CfnBackupVault.NotificationObjectTypeProperty.Builder |
builder() |
java.util.List<java.lang.String> |
getBackupVaultEvents()
An array of events that indicate the status of jobs to back up resources to the backup vault.
|
java.lang.String |
getSnsTopicArn()
An ARN that uniquely identifies an Amazon Simple Notification Service (Amazon SNS) topic;
|
java.util.List<java.lang.String> getBackupVaultEvents()
For valid events, see BackupVaultEvents in the AWS Backup API Guide .
java.lang.String getSnsTopicArn()
for example, arn:aws:sns:us-west-2:111122223333:MyTopic
.
static CfnBackupVault.NotificationObjectTypeProperty.Builder builder()