@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:55.561Z")
public interface BounceProps
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() |
java.lang.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.
|
java.lang.String getSender()
This is the address from which the bounce message will be sent.
BounceTemplate getTemplate()
default ITopic getTopic()
Default: no notification
static BounceProps.Builder builder()
BounceProps.Builder
of BounceProps