interface SnsDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SMSVOICE.Mixins.CfnConfigurationSetPropsMixin.SnsDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssmsvoice/mixins#CfnConfigurationSetPropsMixin_SnsDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.smsvoice.mixins.CfnConfigurationSetPropsMixin.SnsDestinationProperty |
Python | aws_cdk.mixins_preview.aws_smsvoice.mixins.CfnConfigurationSetPropsMixin.SnsDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_smsvoice » mixins » CfnConfigurationSetPropsMixin » SnsDestinationProperty |
An object that defines an Amazon SNS destination for events.
You can use Amazon SNS to send notification when certain events occur.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as smsvoice_mixins } from '@aws-cdk/mixins-preview/aws-smsvoice';
const snsDestinationProperty: smsvoice_mixins.CfnConfigurationSetPropsMixin.SnsDestinationProperty = {
topicArn: 'topicArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| topic | string | The Amazon Resource Name (ARN) of the Amazon SNS topic that you want to publish events to. |
topicArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon SNS topic that you want to publish events to.

.NET
Go
Java
Python
TypeScript