ConfigurationSetEventDestinationAttributes
- class aws_cdk.aws_ses.ConfigurationSetEventDestinationAttributes(*, configuration_set, configuration_set_event_destination_id)
Bases:
objectProperties of a reference to an existing configuration set event destination.
- Parameters:
configuration_set (
IConfigurationSetRef) – The configuration set that the event destination belongs to.configuration_set_event_destination_id (
str) – The ID of the configuration set event destination.
- 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 from aws_cdk.interfaces import aws_ses as interfaces_ses # configuration_set_ref: interfaces_ses.IConfigurationSetRef configuration_set_event_destination_attributes = ses.ConfigurationSetEventDestinationAttributes( configuration_set=configuration_set_ref, configuration_set_event_destination_id="configurationSetEventDestinationId" )
Attributes
- configuration_set
The configuration set that the event destination belongs to.
- configuration_set_event_destination_id
The ID of the configuration set event destination.