interface NotificationObjectTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Backup.CfnBackupVaultPropsMixin.NotificationObjectTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbackup#CfnBackupVaultPropsMixin_NotificationObjectTypeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.backup.CfnBackupVaultPropsMixin.NotificationObjectTypeProperty |
Python | aws_cdk.cfn_property_mixins.aws_backup.CfnBackupVaultPropsMixin.NotificationObjectTypeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_backup » CfnBackupVaultPropsMixin » NotificationObjectTypeProperty |
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 { aws_backup as backup } from '@aws-cdk/cfn-property-mixins';
const notificationObjectTypeProperty: backup.CfnBackupVaultPropsMixin.NotificationObjectTypeProperty = {
backupVaultEvents: ['backupVaultEvents'],
snsTopicArn: 'snsTopicArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| backup | string[] | An array of events that indicate the status of jobs to back up resources to the backup vault. |
| sns | string | ITopic | An ARN that uniquely identifies an Amazon Simple Notification Service (Amazon SNS) topic; |
backupVaultEvents?
Type:
string[]
(optional)
An array of events that indicate the status of jobs to back up resources to the backup vault.
For valid events, see BackupVaultEvents in the AWS Backup API Guide .
snsTopicArn?
Type:
string | ITopic
(optional)
An ARN that uniquely identifies an Amazon Simple Notification Service (Amazon SNS) topic;
for example, arn:aws:sns:us-west-2:111122223333:MyTopic .

.NET
Go
Java
Python
TypeScript