@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:55.039Z")
public interface BounceActionConfig
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() |
java.lang.String |
getMessage()
Human-readable text to include in the bounce message.
|
java.lang.String |
getSender()
The email address of the sender of the bounced email.
|
java.lang.String |
getSmtpReplyCode()
The SMTP reply code, as defined by RFC 5321.
|
default java.lang.String |
getStatusCode()
The SMTP enhanced status code, as defined by RFC 3463.
|
default java.lang.String |
getTopicArn()
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the bounce action is taken.
|
java.lang.String getMessage()
java.lang.String getSender()
This is the address that the bounce message is sent from.
java.lang.String getSmtpReplyCode()
default java.lang.String getStatusCode()
Default: - No status code.
default java.lang.String getTopicArn()
Default: - No notification is sent to SNS.
static BounceActionConfig.Builder builder()
BounceActionConfig.Builder
of BounceActionConfig