Interface StopActionConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
StopActionConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:09.830Z")
@Stability(Stable)
public interface StopActionConfig
extends software.amazon.jsii.JsiiSerializable
StopAction configuration.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ses.*; StopActionConfig stopActionConfig = StopActionConfig.builder() .scope("scope") // the properties below are optional .topicArn("topicArn") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forStopActionConfig
static final class
An implementation forStopActionConfig
-
Method Summary
Modifier and TypeMethodDescriptionstatic StopActionConfig.Builder
builder()
getScope()
The scope of the StopAction.default String
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the stop action is taken.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScope
The scope of the StopAction.The only acceptable value is RuleSet.
-
getTopicArn
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the stop action is taken.Default: - No notification is sent to SNS.
-
builder
- Returns:
- a
StopActionConfig.Builder
ofStopActionConfig
-