interface ConfigurationSetEventDestinationAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.ConfigurationSetEventDestinationAttributes |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#ConfigurationSetEventDestinationAttributes |
Java | software.amazon.awscdk.services.ses.ConfigurationSetEventDestinationAttributes |
Python | aws_cdk.aws_ses.ConfigurationSetEventDestinationAttributes |
TypeScript (source) | aws-cdk-lib » aws_ses » ConfigurationSetEventDestinationAttributes |
Properties of a reference to an existing 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';
import { aws_ses as interfaces_ses } from 'aws-cdk-lib/interfaces';
declare const configurationSetRef: interfaces_ses.IConfigurationSetRef;
const configurationSetEventDestinationAttributes: ses.ConfigurationSetEventDestinationAttributes = {
configurationSet: configurationSetRef,
configurationSetEventDestinationId: 'configurationSetEventDestinationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | IConfiguration | The configuration set that the event destination belongs to. |
| configuration | string | The ID of the configuration set event destination. |
configurationSet
Type:
IConfiguration
The configuration set that the event destination belongs to.
configurationSetEventDestinationId
Type:
string
The ID of the configuration set event destination.

.NET
Go
Java
Python
TypeScript (