/** *

When included in a receipt rule, this action terminates the evaluation of the receipt rule set and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).

For information about setting a stop action in a receipt rule, see the Amazon SES Developer Guide.

*/ export interface _StopAction { /** *

The name of the RuleSet that is being stopped.

*/ Scope: "RuleSet" | string; /** *

The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the stop action is taken. An example of an Amazon SNS topic ARN is arn:aws:sns:us-west-2:123456789012:MyTopic. For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.

*/ TopicArn?: string; } export declare type _UnmarshalledStopAction = _StopAction;