interface ConfigurationSetEventDestinationProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.SES.ConfigurationSetEventDestinationProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsses#ConfigurationSetEventDestinationProps |
![]() | software.amazon.awscdk.services.ses.ConfigurationSetEventDestinationProps |
![]() | aws_cdk.aws_ses.ConfigurationSetEventDestinationProps |
![]() | 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
Name | Type | Description |
---|---|---|
configuration | IConfiguration | The configuration set that contains the event destination. |
destination | Event | The event destination. |
configuration | string | A name for the configuration set event destination. |
enabled? | boolean | Whether Amazon SES publishes events to this destination. |
events? | Email [] | The type of email sending events to publish to the event destination. |
configurationSet
Type:
IConfiguration
The configuration set that contains the event destination.
destination
Type:
Event
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:
Email
[]
(optional, default: send all event types)
The type of email sending events to publish to the event destination.