Class CreateCustomVerificationEmailTemplateRequest
- java.lang.Object
-
- software.amazon.awssdk.core.SdkRequest
-
- software.amazon.awssdk.awscore.AwsRequest
-
- software.amazon.awssdk.services.ses.model.SesRequest
-
- software.amazon.awssdk.services.ses.model.CreateCustomVerificationEmailTemplateRequest
-
- All Implemented Interfaces:
SdkPojo
,ToCopyableBuilder<CreateCustomVerificationEmailTemplateRequest.Builder,CreateCustomVerificationEmailTemplateRequest>
@Generated("software.amazon.awssdk:codegen") public final class CreateCustomVerificationEmailTemplateRequest extends SesRequest implements ToCopyableBuilder<CreateCustomVerificationEmailTemplateRequest.Builder,CreateCustomVerificationEmailTemplateRequest>
Represents a request to create a custom verification email template.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
CreateCustomVerificationEmailTemplateRequest.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateCustomVerificationEmailTemplateRequest.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
String
failureRedirectionURL()
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.String
fromEmailAddress()
The email address that the custom verification email is sent from.<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
List<SdkField<?>>
sdkFields()
static Class<? extends CreateCustomVerificationEmailTemplateRequest.Builder>
serializableBuilderClass()
String
successRedirectionURL()
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.String
templateContent()
The content of the custom verification email.String
templateName()
The name of the custom verification email template.String
templateSubject()
The subject line of the custom verification email.CreateCustomVerificationEmailTemplateRequest.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class software.amazon.awssdk.awscore.AwsRequest
overrideConfiguration
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
templateName
public final String templateName()
The name of the custom verification email template.
- Returns:
- The name of the custom verification email template.
-
fromEmailAddress
public final String fromEmailAddress()
The email address that the custom verification email is sent from.
- Returns:
- The email address that the custom verification email is sent from.
-
templateSubject
public final String templateSubject()
The subject line of the custom verification email.
- Returns:
- The subject line of the custom verification email.
-
templateContent
public final String templateContent()
The content of the custom verification email. The total size of the email must be less than 10 MB. The message body may contain HTML, with some limitations. For more information, see Custom Verification Email Frequently Asked Questions in the Amazon SES Developer Guide.
- Returns:
- The content of the custom verification email. The total size of the email must be less than 10 MB. The message body may contain HTML, with some limitations. For more information, see Custom Verification Email Frequently Asked Questions in the Amazon SES Developer Guide.
-
successRedirectionURL
public final String successRedirectionURL()
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
- Returns:
- The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
-
failureRedirectionURL
public final String failureRedirectionURL()
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
- Returns:
- The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
-
toBuilder
public CreateCustomVerificationEmailTemplateRequest.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<CreateCustomVerificationEmailTemplateRequest.Builder,CreateCustomVerificationEmailTemplateRequest>
- Specified by:
toBuilder
in classSesRequest
-
builder
public static CreateCustomVerificationEmailTemplateRequest.Builder builder()
-
serializableBuilderClass
public static Class<? extends CreateCustomVerificationEmailTemplateRequest.Builder> serializableBuilderClass()
-
hashCode
public final int hashCode()
- Overrides:
hashCode
in classAwsRequest
-
equals
public final boolean equals(Object obj)
- Overrides:
equals
in classAwsRequest
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
getValueForField
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
- Overrides:
getValueForField
in classSdkRequest
-
-