interface NotificationObjectTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Backup.Mixins.CfnLogicallyAirGappedBackupVaultPropsMixin.NotificationObjectTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackup/mixins#CfnLogicallyAirGappedBackupVaultPropsMixin_NotificationObjectTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.backup.mixins.CfnLogicallyAirGappedBackupVaultPropsMixin.NotificationObjectTypeProperty |
Python | aws_cdk.mixins_preview.aws_backup.mixins.CfnLogicallyAirGappedBackupVaultPropsMixin.NotificationObjectTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_backup » mixins » CfnLogicallyAirGappedBackupVaultPropsMixin » NotificationObjectTypeProperty |
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.CfnLogicallyAirGappedBackupVaultPropsMixin.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 | The Amazon Resource Name (ARN) that specifies the topic for a backup vault’s events; |
backupVaultEvents?
Type:
string[]
(optional)
An array of events that indicate the status of jobs to back up resources to the backup vault.
snsTopicArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) that specifies the topic for a backup vault’s events;
for example, arn:aws:sns:us-west-2:111122223333:MyVaultTopic .

.NET
Go
Java
Python
TypeScript