aws-cdk-lib.aws_ses_actions.StopProps

interface StopProps

LanguageType name
.NETAmazon.CDK.AWS.SES.Actions.StopProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssesactions#StopProps
Javasoftware.amazon.awscdk.services.ses.actions.StopProps
Pythonaws_cdk.aws_ses_actions.StopProps
TypeScript (source)aws-cdk-lib » aws_ses_actions » StopProps

Construction properties for a stop action.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses_actions as ses_actions } from 'aws-cdk-lib';
import { aws_sns as sns } from 'aws-cdk-lib';

declare const topic: sns.Topic;
const stopProps: ses_actions.StopProps = {
  topic: topic,
};

Properties

NameTypeDescription
topic?ITopicThe SNS topic to notify when the stop action is taken.

topic?

Type: ITopic (optional)

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