Interface EmailTemplateContent.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<EmailTemplateContent.Builder,EmailTemplateContent>
,SdkBuilder<EmailTemplateContent.Builder,EmailTemplateContent>
,SdkPojo
- Enclosing class:
- EmailTemplateContent
public static interface EmailTemplateContent.Builder extends SdkPojo, CopyableBuilder<EmailTemplateContent.Builder,EmailTemplateContent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EmailTemplateContent.Builder
html(String html)
The HTML body of the email.EmailTemplateContent.Builder
subject(String subject)
The subject line of the email.EmailTemplateContent.Builder
text(String text)
The email body that will be visible to recipients whose email clients do not display HTML.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
subject
EmailTemplateContent.Builder subject(String subject)
The subject line of the email.
- Parameters:
subject
- The subject line of the email.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
text
EmailTemplateContent.Builder text(String text)
The email body that will be visible to recipients whose email clients do not display HTML.
- Parameters:
text
- The email body that will be visible to recipients whose email clients do not display HTML.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
html
EmailTemplateContent.Builder html(String html)
The HTML body of the email.
- Parameters:
html
- The HTML body of the email.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-