aws-cdk-lib.aws_ses.CfnConfigurationSetEventDestinationProps

interface CfnConfigurationSetEventDestinationProps

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

Properties for defining a CfnConfigurationSetEventDestination.

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';
const cfnConfigurationSetEventDestinationProps: ses.CfnConfigurationSetEventDestinationProps = {
  configurationSetName: 'configurationSetName',
  eventDestination: {
    matchingEventTypes: ['matchingEventTypes'],

    // the properties below are optional
    cloudWatchDestination: {
      dimensionConfigurations: [{
        defaultDimensionValue: 'defaultDimensionValue',
        dimensionName: 'dimensionName',
        dimensionValueSource: 'dimensionValueSource',
      }],
    },
    enabled: false,
    kinesisFirehoseDestination: {
      deliveryStreamArn: 'deliveryStreamArn',
      iamRoleArn: 'iamRoleArn',
    },
    name: 'name',
    snsDestination: {
      topicArn: 'topicArn',
    },
  },
};

Properties

NameTypeDescription
configurationSetNamestringThe name of the configuration set that contains the event destination.
eventDestinationIResolvable | EventDestinationPropertyThe event destination object.

configurationSetName

Type: string

The name of the configuration set that contains the event destination.


eventDestination

Type: IResolvable | EventDestinationProperty

The event destination object.