Show / Hide Table of Contents

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 CfnBackupVault.INotificationObjectTypeProperty
Syntax (vb)
Public Interface CfnBackupVault.INotificationObjectTypeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html

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

BackupVaultEvents

An array of events that indicate the status of jobs to back up resources to the backup vault.

SnsTopicArn

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

string[]

Remarks

For valid events, see BackupVaultEvents in the AWS Backup API Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-backupvaultevents

SnsTopicArn

An ARN that uniquely identifies an Amazon Simple Notification Service (Amazon SNS) topic;

string SnsTopicArn { get; }
Property Value

string

Remarks

for example, arn:aws:sns:us-west-2:111122223333:MyTopic .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupvault-notificationobjecttype.html#cfn-backup-backupvault-notificationobjecttype-snstopicarn

Back to top Generated by DocFX