Interface SNSActionConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SNSActionConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:41.440Z")
@Stability(Stable)
public interface SNSActionConfig
extends software.amazon.jsii.JsiiSerializable
SNSAction 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.*;
SNSActionConfig sNSActionConfig = SNSActionConfig.builder()
.encoding("encoding")
.topicArn("topicArn")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSNSActionConfigstatic final classAn implementation forSNSActionConfig -
Method Summary
Modifier and TypeMethodDescriptionstatic SNSActionConfig.Builderbuilder()default StringThe encoding to use for the email within the Amazon SNS notification.default StringThe Amazon Resource Name (ARN) of the Amazon SNS topic to notify.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncoding
The encoding to use for the email within the Amazon SNS notification.Default: 'UTF-8'
-
getTopicArn
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify.Default: - No notification is sent to SNS.
-
builder
- Returns:
- a
SNSActionConfig.BuilderofSNSActionConfig
-