Interface StopActionConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
StopActionConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:41.441Z") @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();
 
  • Method Details

    • getScope

      @Stability(Stable) @NotNull String getScope()
      The scope of the StopAction.

      The only acceptable value is RuleSet.

    • getTopicArn

      @Stability(Stable) @Nullable default String 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

      @Stability(Stable) static StopActionConfig.Builder builder()
      Returns:
      a StopActionConfig.Builder of StopActionConfig