Interface WorkmailActionConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WorkmailActionConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:09.832Z")
@Stability(Stable)
public interface WorkmailActionConfig
extends software.amazon.jsii.JsiiSerializable
WorkmailAction 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.*; WorkmailActionConfig workmailActionConfig = WorkmailActionConfig.builder() .organizationArn("organizationArn") // the properties below are optional .topicArn("topicArn") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forWorkmailActionConfig
static final class
An implementation forWorkmailActionConfig
-
Method Summary
Modifier and TypeMethodDescriptionstatic WorkmailActionConfig.Builder
builder()
The Amazon Resource Name (ARN) of the Amazon WorkMail organization.default String
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the WorkMail action is called.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOrganizationArn
The Amazon Resource Name (ARN) of the Amazon WorkMail organization. -
getTopicArn
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the WorkMail action is called.Default: - No notification is sent to SNS.
-
builder
- Returns:
- a
WorkmailActionConfig.Builder
ofWorkmailActionConfig
-