interface NotificationObjectTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Backup.Mixins.CfnBackupVaultPropsMixin.NotificationObjectTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackup/mixins#CfnBackupVaultPropsMixin_NotificationObjectTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.backup.mixins.CfnBackupVaultPropsMixin.NotificationObjectTypeProperty |
Python | aws_cdk.mixins_preview.aws_backup.mixins.CfnBackupVaultPropsMixin.NotificationObjectTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_backup » mixins » 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 { mixins as backup_mixins } from '@aws-cdk/mixins-preview/aws-backup';
const notificationObjectTypeProperty: backup_mixins.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 | 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
(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