@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.223Z") @Stability(value=Stable) public interface BounceProps 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.actions.*;
import software.amazon.awscdk.services.sns.*;
BounceTemplate bounceTemplate;
Topic topic;
BounceProps bounceProps = BounceProps.builder()
.sender("sender")
.template(bounceTemplate)
// the properties below are optional
.topic(topic)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
BounceProps.Builder
A builder for
BounceProps |
static class |
BounceProps.Jsii$Proxy
An implementation for
BounceProps |
| Modifier and Type | Method and Description |
|---|---|
static BounceProps.Builder |
builder() |
String |
getSender()
The email address of the sender of the bounced email.
|
BounceTemplate |
getTemplate()
The template containing the message, reply code and status code.
|
default ITopic |
getTopic()
The SNS topic to notify when the bounce action is taken.
|
@Stability(value=Stable) @NotNull String getSender()
This is the address from which the bounce message will be sent.
@Stability(value=Stable) @NotNull BounceTemplate getTemplate()
@Stability(value=Stable) @Nullable default ITopic getTopic()
Default: no notification
@Stability(value=Stable) static BounceProps.Builder builder()
BounceProps.Builder of BouncePropsCopyright © 2022. All rights reserved.