Interface BounceTemplateProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BounceTemplateProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:09.835Z")
@Stability(Stable)
public interface BounceTemplateProps
extends software.amazon.jsii.JsiiSerializable
Construction properties for a BounceTemplate.
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.*; BounceTemplateProps bounceTemplateProps = BounceTemplateProps.builder() .message("message") .smtpReplyCode("smtpReplyCode") // the properties below are optional .statusCode("statusCode") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forBounceTemplateProps
static final class
An implementation forBounceTemplateProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic BounceTemplateProps.Builder
builder()
Human-readable text to include in the bounce message.The SMTP reply code, as defined by RFC 5321.default String
The SMTP enhanced status code, as defined by RFC 3463.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMessage
Human-readable text to include in the bounce message. -
getSmtpReplyCode
The SMTP reply code, as defined by RFC 5321.- See Also:
-
getStatusCode
The SMTP enhanced status code, as defined by RFC 3463.- See Also:
-
builder
- Returns:
- a
BounceTemplateProps.Builder
ofBounceTemplateProps
-