aws-cdk-lib.aws_ses.CfnConfigurationSetEventDestination.SnsDestinationProperty

interface SnsDestinationProperty

LanguageType name
.NETAmazon.CDK.AWS.SES.CfnConfigurationSetEventDestination.SnsDestinationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnConfigurationSetEventDestination_SnsDestinationProperty
Javasoftware.amazon.awscdk.services.ses.CfnConfigurationSetEventDestination.SnsDestinationProperty
Pythonaws_cdk.aws_ses.CfnConfigurationSetEventDestination.SnsDestinationProperty
TypeScript aws-cdk-lib » aws_ses » CfnConfigurationSetEventDestination » SnsDestinationProperty

Contains the topic ARN associated with an Amazon Simple Notification Service (Amazon SNS) event destination.

Event destinations, such as Amazon SNS, are associated with configuration sets, which enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide .

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
const snsDestinationProperty: ses.CfnConfigurationSetEventDestination.SnsDestinationProperty = {
  topicArn: 'topicArn',
};

Properties

NameTypeDescription
topicArnstringThe ARN of the Amazon SNS topic for email sending events.

topicArn

Type: string

The ARN of the Amazon SNS topic for email sending events.

You can find the ARN of a topic by using the ListTopics Amazon SNS operation.

For more information about Amazon SNS topics, see the Amazon SNS Developer Guide .