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]]) – An object that defines the event destination.
 
- See:
- 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, event_bridge_destination=ses.CfnConfigurationSetEventDestination.EventBridgeDestinationProperty( event_bus_arn="eventBusArn" ), 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. 
 - event_destination
- An object that defines the event destination.