StopProps

class aws_cdk.aws_ses_actions.StopProps(*, topic=None)

Bases: object

Construction properties for a stop action.

Parameters:

topic (Optional[ITopic]) – The SNS topic to notify when the stop action is taken.

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_actions as ses_actions
from aws_cdk import aws_sns as sns

# topic: sns.Topic

stop_props = ses_actions.StopProps(
    topic=topic
)

Attributes

topic

The SNS topic to notify when the stop action is taken.