Interface CfnBackupVault.NotificationObjectTypeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBackupVault.NotificationObjectTypeProperty.Jsii$Proxy
Enclosing class:
CfnBackupVault

@Stability(Stable) public static interface CfnBackupVault.NotificationObjectTypeProperty extends software.amazon.jsii.JsiiSerializable
Specifies an object containing SNS event notification properties for the target backup vault.

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();