interface CfnConfigurationSetEventDestinationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnConfigurationSetEventDestinationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnConfigurationSetEventDestinationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnConfigurationSetEventDestinationMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnConfigurationSetEventDestinationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnConfigurationSetEventDestinationMixinProps |
Properties for CfnConfigurationSetEventDestinationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const cfnConfigurationSetEventDestinationMixinProps: ses_mixins.CfnConfigurationSetEventDestinationMixinProps = {
configurationSetName: 'configurationSetName',
eventDestination: {
cloudWatchDestination: {
dimensionConfigurations: [{
defaultDimensionValue: 'defaultDimensionValue',
dimensionName: 'dimensionName',
dimensionValueSource: 'dimensionValueSource',
}],
},
enabled: false,
eventBridgeDestination: {
eventBusArn: 'eventBusArn',
},
kinesisFirehoseDestination: {
deliveryStreamArn: 'deliveryStreamArn',
iamRoleArn: 'iamRoleArn',
},
matchingEventTypes: ['matchingEventTypes'],
name: 'name',
snsDestination: {
topicArn: 'topicArn',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | string | The name of the configuration set that contains the event destination. |
| event | IResolvable | Event | An object that defines the event destination. |
configurationSetName?
Type:
string
(optional)
The name of the configuration set that contains the event destination.
eventDestination?
Type:
IResolvable | Event
(optional)
An object that defines the event destination.

.NET
Go
Java
Python
TypeScript