Interface PutEmailIdentityDkimSigningAttributesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<PutEmailIdentityDkimSigningAttributesRequest.Builder,PutEmailIdentityDkimSigningAttributesRequest>,SdkBuilder<PutEmailIdentityDkimSigningAttributesRequest.Builder,PutEmailIdentityDkimSigningAttributesRequest>,SdkPojo,SdkRequest.Builder,SesV2Request.Builder
- Enclosing class:
- PutEmailIdentityDkimSigningAttributesRequest
@Mutable @NotThreadSafe public static interface PutEmailIdentityDkimSigningAttributesRequest.Builder extends SesV2Request.Builder, SdkPojo, CopyableBuilder<PutEmailIdentityDkimSigningAttributesRequest.Builder,PutEmailIdentityDkimSigningAttributesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PutEmailIdentityDkimSigningAttributesRequest.BuilderemailIdentity(String emailIdentity)The email identity.PutEmailIdentityDkimSigningAttributesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutEmailIdentityDkimSigningAttributesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default PutEmailIdentityDkimSigningAttributesRequest.BuildersigningAttributes(Consumer<DkimSigningAttributes.Builder> signingAttributes)An object that contains information about the private key and selector that you want to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the identity, or, configures the key length to be used for Easy DKIM.PutEmailIdentityDkimSigningAttributesRequest.BuildersigningAttributes(DkimSigningAttributes signingAttributes)An object that contains information about the private key and selector that you want to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the identity, or, configures the key length to be used for Easy DKIM.PutEmailIdentityDkimSigningAttributesRequest.BuildersigningAttributesOrigin(String signingAttributesOrigin)The method to use to configure DKIM for the identity.PutEmailIdentityDkimSigningAttributesRequest.BuildersigningAttributesOrigin(DkimSigningAttributesOrigin signingAttributesOrigin)The method to use to configure DKIM for the 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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.sesv2.model.SesV2Request.Builder
build
-
-
-
-
Method Detail
-
emailIdentity
PutEmailIdentityDkimSigningAttributesRequest.Builder emailIdentity(String emailIdentity)
The email identity.
- Parameters:
emailIdentity- The email identity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
signingAttributesOrigin
PutEmailIdentityDkimSigningAttributesRequest.Builder signingAttributesOrigin(String signingAttributesOrigin)
The method to use to configure DKIM for the identity. There are the following possible values:
-
AWS_SES– Configure DKIM for the identity by using Easy DKIM. -
EXTERNAL– Configure DKIM for the identity by using Bring Your Own DKIM (BYODKIM).
- Parameters:
signingAttributesOrigin- The method to use to configure DKIM for the identity. There are the following possible values:-
AWS_SES– Configure DKIM for the identity by using Easy DKIM. -
EXTERNAL– Configure DKIM for the identity by using Bring Your Own DKIM (BYODKIM).
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DkimSigningAttributesOrigin,DkimSigningAttributesOrigin
-
-
signingAttributesOrigin
PutEmailIdentityDkimSigningAttributesRequest.Builder signingAttributesOrigin(DkimSigningAttributesOrigin signingAttributesOrigin)
The method to use to configure DKIM for the identity. There are the following possible values:
-
AWS_SES– Configure DKIM for the identity by using Easy DKIM. -
EXTERNAL– Configure DKIM for the identity by using Bring Your Own DKIM (BYODKIM).
- Parameters:
signingAttributesOrigin- The method to use to configure DKIM for the identity. There are the following possible values:-
AWS_SES– Configure DKIM for the identity by using Easy DKIM. -
EXTERNAL– Configure DKIM for the identity by using Bring Your Own DKIM (BYODKIM).
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DkimSigningAttributesOrigin,DkimSigningAttributesOrigin
-
-
signingAttributes
PutEmailIdentityDkimSigningAttributesRequest.Builder signingAttributes(DkimSigningAttributes signingAttributes)
An object that contains information about the private key and selector that you want to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the identity, or, configures the key length to be used for Easy DKIM.
- Parameters:
signingAttributes- An object that contains information about the private key and selector that you want to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the identity, or, configures the key length to be used for Easy DKIM.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
signingAttributes
default PutEmailIdentityDkimSigningAttributesRequest.Builder signingAttributes(Consumer<DkimSigningAttributes.Builder> signingAttributes)
An object that contains information about the private key and selector that you want to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the identity, or, configures the key length to be used for Easy DKIM.
This is a convenience method that creates an instance of theDkimSigningAttributes.Builderavoiding the need to create one manually viaDkimSigningAttributes.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosigningAttributes(DkimSigningAttributes).- Parameters:
signingAttributes- 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:
signingAttributes(DkimSigningAttributes)
-
overrideConfiguration
PutEmailIdentityDkimSigningAttributesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutEmailIdentityDkimSigningAttributesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-