interface StopProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SES.Actions.StopProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssesactions#StopProps |
Java | software.amazon.awscdk.services.ses.actions.StopProps |
Python | aws_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
Name | Type | Description |
---|---|---|
topic? | ITopic | The 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.