aws-cdk-lib.aws_ses.ConfigurationSetEventDestinationOptions

interface ConfigurationSetEventDestinationOptions

LanguageType name
.NETAmazon.CDK.AWS.SES.ConfigurationSetEventDestinationOptions
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#ConfigurationSetEventDestinationOptions
Javasoftware.amazon.awscdk.services.ses.ConfigurationSetEventDestinationOptions
Pythonaws_cdk.aws_ses.ConfigurationSetEventDestinationOptions
TypeScript (source)aws-cdk-lib » aws_ses » ConfigurationSetEventDestinationOptions

Options for a configuration set event destination.

Example

declare const myConfigurationSet: ses.ConfigurationSet;
declare const myTopic: sns.Topic;

myConfigurationSet.addEventDestination('ToSns', {
  destination: ses.EventDestination.snsTopic(myTopic),
})

Properties

NameTypeDescription
destinationEventDestinationThe event destination.
configurationSetEventDestinationName?stringA name for the configuration set event destination.
enabled?booleanWhether Amazon SES publishes events to this destination.
events?EmailSendingEvent[]The type of email sending events to publish to the event destination.

destination

Type: EventDestination

The event destination.


configurationSetEventDestinationName?

Type: string (optional, default: a CloudFormation generated name)

A name for the configuration set event destination.


enabled?

Type: boolean (optional, default: true)

Whether Amazon SES publishes events to this destination.


events?

Type: EmailSendingEvent[] (optional, default: send all event types)

The type of email sending events to publish to the event destination.