CfnConfigurationSetEventDestinationMixinProps

class aws_cdk.mixins_preview.aws_ses.mixins.CfnConfigurationSetEventDestinationMixinProps(*, configuration_set_name=None, event_destination=None)

Bases: object

Properties for CfnConfigurationSetEventDestinationPropsMixin.

Parameters:
  • configuration_set_name (Optional[str]) – The name of the configuration set that contains the event destination.

  • event_destination (Union[IResolvable, EventDestinationProperty, Dict[str, Any], None]) – An object that defines the event destination.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_ses import mixins as ses_mixins

cfn_configuration_set_event_destination_mixin_props = ses_mixins.CfnConfigurationSetEventDestinationMixinProps(
    configuration_set_name="configurationSetName",
    event_destination=ses_mixins.CfnConfigurationSetEventDestinationPropsMixin.EventDestinationProperty(
        cloud_watch_destination=ses_mixins.CfnConfigurationSetEventDestinationPropsMixin.CloudWatchDestinationProperty(
            dimension_configurations=[ses_mixins.CfnConfigurationSetEventDestinationPropsMixin.DimensionConfigurationProperty(
                default_dimension_value="defaultDimensionValue",
                dimension_name="dimensionName",
                dimension_value_source="dimensionValueSource"
            )]
        ),
        enabled=False,
        event_bridge_destination=ses_mixins.CfnConfigurationSetEventDestinationPropsMixin.EventBridgeDestinationProperty(
            event_bus_arn="eventBusArn"
        ),
        kinesis_firehose_destination=ses_mixins.CfnConfigurationSetEventDestinationPropsMixin.KinesisFirehoseDestinationProperty(
            delivery_stream_arn="deliveryStreamArn",
            iam_role_arn="iamRoleArn"
        ),
        matching_event_types=["matchingEventTypes"],
        name="name",
        sns_destination=ses_mixins.CfnConfigurationSetEventDestinationPropsMixin.SnsDestinationProperty(
            topic_arn="topicArn"
        )
    )
)

Attributes

configuration_set_name

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html#cfn-ses-configurationseteventdestination-configurationsetname

event_destination

An object that defines the event destination.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationseteventdestination.html#cfn-ses-configurationseteventdestination-eventdestination