class CfnConfigurationSetEventDestinationPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PinpointEmail.Mixins.CfnConfigurationSetEventDestinationPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpointemail/mixins#CfnConfigurationSetEventDestinationPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.pinpointemail.mixins.CfnConfigurationSetEventDestinationPropsMixin |
Python | aws_cdk.mixins_preview.aws_pinpointemail.mixins.CfnConfigurationSetEventDestinationPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_pinpointemail » mixins » CfnConfigurationSetEventDestinationPropsMixin |
Implements
IMixin
Extends
Mixin
Create an event destination.
In Amazon Pinpoint, events include message sends, deliveries, opens, clicks, bounces, and complaints. Event destinations are places that you can send information about these events to. For example, you can send event data to Amazon SNS to receive notifications when you receive bounces or complaints, or you can use Amazon Kinesis Data Firehose to stream data to Amazon S3 for long-term storage.
A single configuration set can include more than one event destination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as pinpointemail_mixins } from '@aws-cdk/mixins-preview/aws-pinpointemail';
const cfnConfigurationSetEventDestinationPropsMixin = new pinpointemail_mixins.CfnConfigurationSetEventDestinationPropsMixin({
configurationSetName: 'configurationSetName',
eventDestination: {
cloudWatchDestination: {
dimensionConfigurations: [{
defaultDimensionValue: 'defaultDimensionValue',
dimensionName: 'dimensionName',
dimensionValueSource: 'dimensionValueSource',
}],
},
enabled: false,
kinesisFirehoseDestination: {
deliveryStreamArn: 'deliveryStreamArn',
iamRoleArn: 'iamRoleArn',
},
matchingEventTypes: ['matchingEventTypes'],
pinpointDestination: {
applicationArn: 'applicationArn',
},
snsDestination: {
topicArn: 'topicArn',
},
},
eventDestinationName: 'eventDestinationName',
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnConfigurationSetEventDestinationPropsMixin(props: CfnConfigurationSetEventDestinationMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Configuration Set Event Destination Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::PinpointEmail::ConfigurationSetEventDestination.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript