@Stability(value=Stable)
public static interface CfnBackupVault.NotificationObjectTypeProperty
extends software.amazon.jsii.JsiiSerializable
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() |
List<String> |
getBackupVaultEvents()
An array of events that indicate the status of jobs to back up resources to the backup vault.
|
String |
getSnsTopicArn()
An ARN that uniquely identifies an Amazon Simple Notification Service (Amazon SNS) topic;
|
@Stability(value=Stable) @NotNull List<String> getBackupVaultEvents()
For valid events, see BackupVaultEvents in the AWS Backup API Guide .
@Stability(value=Stable) @NotNull String getSnsTopicArn()
for example, arn:aws:sns:us-west-2:111122223333:MyTopic .
@Stability(value=Stable) static CfnBackupVault.NotificationObjectTypeProperty.Builder builder()
Copyright © 2022. All rights reserved.