Interface EmailSettings
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EmailSettings.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-27T17:01:59.364Z")
@Stability(Stable)
public interface EmailSettings
extends software.amazon.jsii.JsiiSerializable
Email settings for the user pool.
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.cognito.*; EmailSettings emailSettings = EmailSettings.builder() .from("from") .replyTo("replyTo") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEmailSettings
static final class
An implementation forEmailSettings
-
Method Summary
Modifier and TypeMethodDescriptionstatic EmailSettings.Builder
builder()
default String
getFrom()
The 'from' address on the emails received by the user.default String
The 'replyTo' address on the emails received by the user as defined by IETF RFC-5322.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFrom
The 'from' address on the emails received by the user.Default: noreply@verificationemail.com
-
getReplyTo
The 'replyTo' address on the emails received by the user as defined by IETF RFC-5322.When set, most email clients recognize to change 'to' line to this address when a reply is drafted.
Default: - Not set.
-
builder
- Returns:
- a
EmailSettings.Builder
ofEmailSettings
-