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
[EventDestinationProperty
,IResolvable
]) – The event destination object.
- Link
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.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" ) )
Attributes
-
configuration_set_name
¶ The name of the configuration set that contains the event destination.
-
event_destination
¶ The event destination object.