Interface ListCustomVerificationEmailTemplatesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListCustomVerificationEmailTemplatesResponse.Builder,ListCustomVerificationEmailTemplatesResponse>,SdkBuilder<ListCustomVerificationEmailTemplatesResponse.Builder,ListCustomVerificationEmailTemplatesResponse>,SdkPojo,SdkResponse.Builder,SesResponse.Builder
- Enclosing class:
- ListCustomVerificationEmailTemplatesResponse
public static interface ListCustomVerificationEmailTemplatesResponse.Builder extends SesResponse.Builder, SdkPojo, CopyableBuilder<ListCustomVerificationEmailTemplatesResponse.Builder,ListCustomVerificationEmailTemplatesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCustomVerificationEmailTemplatesResponse.BuildercustomVerificationEmailTemplates(Collection<CustomVerificationEmailTemplate> customVerificationEmailTemplates)A list of the custom verification email templates that exist in your account.ListCustomVerificationEmailTemplatesResponse.BuildercustomVerificationEmailTemplates(Consumer<CustomVerificationEmailTemplate.Builder>... customVerificationEmailTemplates)A list of the custom verification email templates that exist in your account.ListCustomVerificationEmailTemplatesResponse.BuildercustomVerificationEmailTemplates(CustomVerificationEmailTemplate... customVerificationEmailTemplates)A list of the custom verification email templates that exist in your account.ListCustomVerificationEmailTemplatesResponse.BuildernextToken(String nextToken)A token indicating that there are additional custom verification email templates available to be listed.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.ses.model.SesResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
customVerificationEmailTemplates
ListCustomVerificationEmailTemplatesResponse.Builder customVerificationEmailTemplates(Collection<CustomVerificationEmailTemplate> customVerificationEmailTemplates)
A list of the custom verification email templates that exist in your account.
- Parameters:
customVerificationEmailTemplates- A list of the custom verification email templates that exist in your account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customVerificationEmailTemplates
ListCustomVerificationEmailTemplatesResponse.Builder customVerificationEmailTemplates(CustomVerificationEmailTemplate... customVerificationEmailTemplates)
A list of the custom verification email templates that exist in your account.
- Parameters:
customVerificationEmailTemplates- A list of the custom verification email templates that exist in your account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customVerificationEmailTemplates
ListCustomVerificationEmailTemplatesResponse.Builder customVerificationEmailTemplates(Consumer<CustomVerificationEmailTemplate.Builder>... customVerificationEmailTemplates)
A list of the custom verification email templates that exist in your account.
This is a convenience method that creates an instance of theCustomVerificationEmailTemplate.Builderavoiding the need to create one manually viaCustomVerificationEmailTemplate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#customVerificationEmailTemplates(List.) - Parameters:
customVerificationEmailTemplates- a consumer that will call methods onCustomVerificationEmailTemplate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#customVerificationEmailTemplates(java.util.Collection)
-
nextToken
ListCustomVerificationEmailTemplatesResponse.Builder nextToken(String nextToken)
A token indicating that there are additional custom verification email templates available to be listed. Pass this token to a subsequent call to
ListTemplatesto retrieve the next 50 custom verification email templates.- Parameters:
nextToken- A token indicating that there are additional custom verification email templates available to be listed. Pass this token to a subsequent call toListTemplatesto retrieve the next 50 custom verification email templates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-