aws-cdk-lib.aws_ses.ConfigurationSetEventDestinationProps

interface ConfigurationSetEventDestinationProps

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

Properties for a configuration set event destination.

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';

declare const configurationSet: ses.ConfigurationSet;
declare const eventDestination: ses.EventDestination;
const configurationSetEventDestinationProps: ses.ConfigurationSetEventDestinationProps = {
  configurationSet: configurationSet,
  destination: eventDestination,

  // the properties below are optional
  configurationSetEventDestinationName: 'configurationSetEventDestinationName',
  enabled: false,
  events: [ses.EmailSendingEvent.SEND],
};

Properties

NameTypeDescription
configurationSetIConfigurationSetThe configuration set that contains the event destination.
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.

configurationSet

Type: IConfigurationSet

The configuration set that contains 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.