Interface CreateEmailIdentityResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateEmailIdentityResponse.Builder,CreateEmailIdentityResponse>,SdkBuilder<CreateEmailIdentityResponse.Builder,CreateEmailIdentityResponse>,SdkPojo,SdkResponse.Builder,SesV2Response.Builder
- Enclosing class:
- CreateEmailIdentityResponse
@Mutable @NotThreadSafe public static interface CreateEmailIdentityResponse.Builder extends SesV2Response.Builder, SdkPojo, CopyableBuilder<CreateEmailIdentityResponse.Builder,CreateEmailIdentityResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CreateEmailIdentityResponse.BuilderdkimAttributes(Consumer<DkimAttributes.Builder> dkimAttributes)An object that contains information about the DKIM attributes for the identity.CreateEmailIdentityResponse.BuilderdkimAttributes(DkimAttributes dkimAttributes)An object that contains information about the DKIM attributes for the identity.CreateEmailIdentityResponse.BuilderidentityType(String identityType)The email identity type.CreateEmailIdentityResponse.BuilderidentityType(IdentityType identityType)The email identity type.CreateEmailIdentityResponse.BuilderverifiedForSendingStatus(Boolean verifiedForSendingStatus)Specifies whether or not the identity is verified.-
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
-
identityType
CreateEmailIdentityResponse.Builder identityType(String identityType)
The email identity type. Note: the
MANAGED_DOMAINidentity type is not supported.- Parameters:
identityType- The email identity type. Note: theMANAGED_DOMAINidentity type is not supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IdentityType,IdentityType
-
identityType
CreateEmailIdentityResponse.Builder identityType(IdentityType identityType)
The email identity type. Note: the
MANAGED_DOMAINidentity type is not supported.- Parameters:
identityType- The email identity type. Note: theMANAGED_DOMAINidentity type is not supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IdentityType,IdentityType
-
verifiedForSendingStatus
CreateEmailIdentityResponse.Builder verifiedForSendingStatus(Boolean verifiedForSendingStatus)
Specifies whether or not the identity is verified. You can only send email from verified email addresses or domains. For more information about verifying identities, see the Amazon Pinpoint User Guide.
- Parameters:
verifiedForSendingStatus- Specifies whether or not the identity is verified. You can only send email from verified email addresses or domains. For more information about verifying identities, see the Amazon Pinpoint User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dkimAttributes
CreateEmailIdentityResponse.Builder dkimAttributes(DkimAttributes dkimAttributes)
An object that contains information about the DKIM attributes for the identity.
- Parameters:
dkimAttributes- An object that contains information about the DKIM attributes for the identity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dkimAttributes
default CreateEmailIdentityResponse.Builder dkimAttributes(Consumer<DkimAttributes.Builder> dkimAttributes)
An object that contains information about the DKIM attributes for the identity.
This is a convenience method that creates an instance of theDkimAttributes.Builderavoiding the need to create one manually viaDkimAttributes.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todkimAttributes(DkimAttributes).- Parameters:
dkimAttributes- a consumer that will call methods onDkimAttributes.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dkimAttributes(DkimAttributes)
-
-