interface NotificationObjectTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Backup.CfnLogicallyAirGappedBackupVaultPropsMixin.NotificationObjectTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbackup#CfnLogicallyAirGappedBackupVaultPropsMixin_NotificationObjectTypeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.backup.CfnLogicallyAirGappedBackupVaultPropsMixin.NotificationObjectTypeProperty |
Python | aws_cdk.cfn_property_mixins.aws_backup.CfnLogicallyAirGappedBackupVaultPropsMixin.NotificationObjectTypeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_backup » CfnLogicallyAirGappedBackupVaultPropsMixin » NotificationObjectTypeProperty |
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.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