aws-cdk-lib.aws_pinpointemail.CfnConfigurationSetEventDestinationProps

interface CfnConfigurationSetEventDestinationProps

LanguageType name
.NETAmazon.CDK.AWS.PinpointEmail.CfnConfigurationSetEventDestinationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspinpointemail#CfnConfigurationSetEventDestinationProps
Javasoftware.amazon.awscdk.services.pinpointemail.CfnConfigurationSetEventDestinationProps
Pythonaws_cdk.aws_pinpointemail.CfnConfigurationSetEventDestinationProps
TypeScript aws-cdk-lib » aws_pinpointemail » 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_pinpointemail as pinpointemail } from 'aws-cdk-lib';
const cfnConfigurationSetEventDestinationProps: pinpointemail.CfnConfigurationSetEventDestinationProps = {
  configurationSetName: 'configurationSetName',
  eventDestinationName: 'eventDestinationName',

  // the properties below are optional
  eventDestination: {
    matchingEventTypes: ['matchingEventTypes'],

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

Properties

NameTypeDescription
configurationSetNamestringThe name of the configuration set that contains the event destination that you want to modify.
eventDestinationNamestringThe name of the event destination that you want to modify.
eventDestination?IResolvable | EventDestinationPropertyAn object that defines the event destination.

configurationSetName

Type: string

The name of the configuration set that contains the event destination that you want to modify.


eventDestinationName

Type: string

The name of the event destination that you want to modify.


eventDestination?

Type: IResolvable | EventDestinationProperty (optional)

An object that defines the event destination.