CfnConfigurationSetEventDestinationProps

class aws_cdk.aws_ses.CfnConfigurationSetEventDestinationProps(*, configuration_set_name, event_destination)

Bases: object

Properties for defining a CfnConfigurationSetEventDestination.

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

  • event_destination (Union[IResolvable, EventDestinationProperty, Dict[str, Any]]) – The event destination object.

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 import aws_ses as ses

cfn_configuration_set_event_destination_props = ses.CfnConfigurationSetEventDestinationProps(
    configuration_set_name="configurationSetName",
    event_destination=ses.CfnConfigurationSetEventDestination.EventDestinationProperty(
        matching_event_types=["matchingEventTypes"],

        # the properties below are optional
        cloud_watch_destination=ses.CfnConfigurationSetEventDestination.CloudWatchDestinationProperty(
            dimension_configurations=[ses.CfnConfigurationSetEventDestination.DimensionConfigurationProperty(
                default_dimension_value="defaultDimensionValue",
                dimension_name="dimensionName",
                dimension_value_source="dimensionValueSource"
            )]
        ),
        enabled=False,
        kinesis_firehose_destination=ses.CfnConfigurationSetEventDestination.KinesisFirehoseDestinationProperty(
            delivery_stream_arn="deliveryStreamArn",
            iam_role_arn="iamRoleArn"
        ),
        name="name",
        sns_destination=ses.CfnConfigurationSetEventDestination.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

The event destination object.

See:

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