Interface StopActionConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
StopActionConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:18.189Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forStopActionConfigstatic final classAn implementation forStopActionConfig -
Method Summary
Modifier and TypeMethodDescriptionstatic StopActionConfig.Builderbuilder()getScope()The scope of the StopAction.default StringThe 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.BuilderofStopActionConfig
-