Interface CreateEmailIdentityRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateEmailIdentityRequest.Builder,CreateEmailIdentityRequest>
,SdkBuilder<CreateEmailIdentityRequest.Builder,CreateEmailIdentityRequest>
,SdkPojo
,SdkRequest.Builder
,SesV2Request.Builder
- Enclosing class:
- CreateEmailIdentityRequest
public static interface CreateEmailIdentityRequest.Builder extends SesV2Request.Builder, SdkPojo, CopyableBuilder<CreateEmailIdentityRequest.Builder,CreateEmailIdentityRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateEmailIdentityRequest.Builder
configurationSetName(String configurationSetName)
The configuration set to use by default when sending from this identity.default CreateEmailIdentityRequest.Builder
dkimSigningAttributes(Consumer<DkimSigningAttributes.Builder> dkimSigningAttributes)
If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM.CreateEmailIdentityRequest.Builder
dkimSigningAttributes(DkimSigningAttributes dkimSigningAttributes)
If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM.CreateEmailIdentityRequest.Builder
emailIdentity(String emailIdentity)
The email address or domain to verify.CreateEmailIdentityRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CreateEmailIdentityRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
CreateEmailIdentityRequest.Builder
tags(Collection<Tag> tags)
An array of objects that define the tags (keys and values) to associate with the email identity.CreateEmailIdentityRequest.Builder
tags(Consumer<Tag.Builder>... tags)
An array of objects that define the tags (keys and values) to associate with the email identity.CreateEmailIdentityRequest.Builder
tags(Tag... tags)
An array of objects that define the tags (keys and values) to associate with the email identity.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.sesv2.model.SesV2Request.Builder
build
-
-
-
-
Method Detail
-
emailIdentity
CreateEmailIdentityRequest.Builder emailIdentity(String emailIdentity)
The email address or domain to verify.
- Parameters:
emailIdentity
- The email address or domain to verify.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateEmailIdentityRequest.Builder tags(Collection<Tag> tags)
An array of objects that define the tags (keys and values) to associate with the email identity.
- Parameters:
tags
- An array of objects that define the tags (keys and values) to associate with the email identity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateEmailIdentityRequest.Builder tags(Tag... tags)
An array of objects that define the tags (keys and values) to associate with the email identity.
- Parameters:
tags
- An array of objects that define the tags (keys and values) to associate with the email identity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateEmailIdentityRequest.Builder tags(Consumer<Tag.Builder>... tags)
An array of objects that define the tags (keys and values) to associate with the email identity.
This is a convenience method that creates an instance of theTag.Builder
avoiding the need to create one manually viaTag.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#tags(List
.) - Parameters:
tags
- a consumer that will call methods onTag.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection
)
-
dkimSigningAttributes
CreateEmailIdentityRequest.Builder dkimSigningAttributes(DkimSigningAttributes dkimSigningAttributes)
If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM.
You can only specify this object if the email identity is a domain, as opposed to an address.
- Parameters:
dkimSigningAttributes
- If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM.You can only specify this object if the email identity is a domain, as opposed to an address.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dkimSigningAttributes
default CreateEmailIdentityRequest.Builder dkimSigningAttributes(Consumer<DkimSigningAttributes.Builder> dkimSigningAttributes)
If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM.
You can only specify this object if the email identity is a domain, as opposed to an address.
This is a convenience method that creates an instance of theDkimSigningAttributes.Builder
avoiding the need to create one manually viaDkimSigningAttributes.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todkimSigningAttributes(DkimSigningAttributes)
.- Parameters:
dkimSigningAttributes
- a consumer that will call methods onDkimSigningAttributes.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dkimSigningAttributes(DkimSigningAttributes)
-
configurationSetName
CreateEmailIdentityRequest.Builder configurationSetName(String configurationSetName)
The configuration set to use by default when sending from this identity. Note that any configuration set defined in the email sending request takes precedence.
- Parameters:
configurationSetName
- The configuration set to use by default when sending from this identity. Note that any configuration set defined in the email sending request takes precedence.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateEmailIdentityRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CreateEmailIdentityRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-