Interface CfnBackupVault.INotificationObjectTypeProperty
Specifies an object containing SNS event notification properties for the target backup vault.
Namespace: Amazon.CDK.AWS.Backup
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface INotificationObjectTypeProperty
Syntax (vb)
Public Interface INotificationObjectTypeProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Backup;
var notificationObjectTypeProperty = new NotificationObjectTypeProperty {
BackupVaultEvents = new [] { "backupVaultEvents" },
SnsTopicArn = "snsTopicArn"
};
Synopsis
Properties
Backup |
An array of events that indicate the status of jobs to back up resources to the backup vault. |
Sns |
An ARN that uniquely identifies an Amazon Simple Notification Service (Amazon SNS) topic; |
Properties
BackupVaultEvents
An array of events that indicate the status of jobs to back up resources to the backup vault.
string[] BackupVaultEvents { get; }
Property Value
System.
Remarks
For valid events, see BackupVaultEvents in the AWS Backup API Guide .
SnsTopicArn
An ARN that uniquely identifies an Amazon Simple Notification Service (Amazon SNS) topic;
string SnsTopicArn { get; }
Property Value
System.
Remarks
for example, arn:aws:sns:us-west-2:111122223333:MyTopic
.