Interface SendEmailResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<SendEmailResponse.Builder,SendEmailResponse>
,SdkBuilder<SendEmailResponse.Builder,SendEmailResponse>
,SdkPojo
,SdkResponse.Builder
,SesV2Response.Builder
- Enclosing class:
- SendEmailResponse
public static interface SendEmailResponse.Builder extends SesV2Response.Builder, SdkPojo, CopyableBuilder<SendEmailResponse.Builder,SendEmailResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SendEmailResponse.Builder
messageId(String messageId)
A unique identifier for the message that is generated when the message is accepted.-
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.sesv2.model.SesV2Response.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
messageId
SendEmailResponse.Builder messageId(String messageId)
A unique identifier for the message that is generated when the message is accepted.
It's possible for Amazon SES to accept a message without sending it. For example, this can happen when the message that you're trying to send has an attachment that contains a virus, or when you send a templated email that contains invalid personalization content.
- Parameters:
messageId
- A unique identifier for the message that is generated when the message is accepted.It's possible for Amazon SES to accept a message without sending it. For example, this can happen when the message that you're trying to send has an attachment that contains a virus, or when you send a templated email that contains invalid personalization content.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-