interface CfnConfigurationSetEventDestinationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnConfigurationSetEventDestinationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnConfigurationSetEventDestinationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnConfigurationSetEventDestinationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnConfigurationSetEventDestinationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » 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 { aws_ses as ses } from '@aws-cdk/cfn-property-mixins';
const cfnConfigurationSetEventDestinationMixinProps: ses.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 | IConfiguration | The name of the configuration set that contains the event destination. |
| event | IResolvable | Event | An object that defines the event destination. |
configurationSetName?
Type:
string | IConfiguration
(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