@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.177Z") @Stability(value=Stable) public interface BounceActionConfig extends software.amazon.jsii.JsiiSerializable
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.*;
BounceActionConfig bounceActionConfig = BounceActionConfig.builder()
.message("message")
.sender("sender")
.smtpReplyCode("smtpReplyCode")
// the properties below are optional
.statusCode("statusCode")
.topicArn("topicArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
BounceActionConfig.Builder
A builder for
BounceActionConfig |
static class |
BounceActionConfig.Jsii$Proxy
An implementation for
BounceActionConfig |
| Modifier and Type | Method and Description |
|---|---|
static BounceActionConfig.Builder |
builder() |
String |
getMessage()
Human-readable text to include in the bounce message.
|
String |
getSender()
The email address of the sender of the bounced email.
|
String |
getSmtpReplyCode()
The SMTP reply code, as defined by RFC 5321.
|
default String |
getStatusCode()
The SMTP enhanced status code, as defined by RFC 3463.
|
default String |
getTopicArn()
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the bounce action is taken.
|
@Stability(value=Stable) @NotNull String getMessage()
@Stability(value=Stable) @NotNull String getSender()
This is the address that the bounce message is sent from.
@Stability(value=Stable) @NotNull String getSmtpReplyCode()
@Stability(value=Stable) @Nullable default String getStatusCode()
Default: - No status code.
@Stability(value=Stable) @Nullable default String getTopicArn()
Default: - No notification is sent to SNS.
@Stability(value=Stable) static BounceActionConfig.Builder builder()
BounceActionConfig.Builder of BounceActionConfigCopyright © 2022. All rights reserved.