Interface IdentityDkimAttributes.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<IdentityDkimAttributes.Builder,IdentityDkimAttributes>
,SdkBuilder<IdentityDkimAttributes.Builder,IdentityDkimAttributes>
,SdkPojo
- Enclosing class:
- IdentityDkimAttributes
public static interface IdentityDkimAttributes.Builder extends SdkPojo, CopyableBuilder<IdentityDkimAttributes.Builder,IdentityDkimAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IdentityDkimAttributes.Builder
dkimEnabled(Boolean dkimEnabled)
Is true if DKIM signing is enabled for email sent from the identity.IdentityDkimAttributes.Builder
dkimTokens(String... dkimTokens)
A set of character strings that represent the domain's identity.IdentityDkimAttributes.Builder
dkimTokens(Collection<String> dkimTokens)
A set of character strings that represent the domain's identity.IdentityDkimAttributes.Builder
dkimVerificationStatus(String dkimVerificationStatus)
Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name's DNS.IdentityDkimAttributes.Builder
dkimVerificationStatus(VerificationStatus dkimVerificationStatus)
Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name's DNS.-
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
-
-
-
-
Method Detail
-
dkimEnabled
IdentityDkimAttributes.Builder dkimEnabled(Boolean dkimEnabled)
Is true if DKIM signing is enabled for email sent from the identity. It's false otherwise. The default value is true.
- Parameters:
dkimEnabled
- Is true if DKIM signing is enabled for email sent from the identity. It's false otherwise. The default value is true.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dkimVerificationStatus
IdentityDkimAttributes.Builder dkimVerificationStatus(String dkimVerificationStatus)
Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name's DNS. (This only applies to domain identities, not email address identities.)
- Parameters:
dkimVerificationStatus
- Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name's DNS. (This only applies to domain identities, not email address identities.)- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VerificationStatus
,VerificationStatus
-
dkimVerificationStatus
IdentityDkimAttributes.Builder dkimVerificationStatus(VerificationStatus dkimVerificationStatus)
Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name's DNS. (This only applies to domain identities, not email address identities.)
- Parameters:
dkimVerificationStatus
- Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name's DNS. (This only applies to domain identities, not email address identities.)- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VerificationStatus
,VerificationStatus
-
dkimTokens
IdentityDkimAttributes.Builder dkimTokens(Collection<String> dkimTokens)
A set of character strings that represent the domain's identity. Using these tokens, you need to create DNS CNAME records that point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services eventually detects that you've updated your DNS records. This detection process might take up to 72 hours. After successful detection, Amazon SES is able to DKIM-sign email originating from that domain. (This only applies to domain identities, not email address identities.)
For more information about creating DNS records using DKIM tokens, see the Amazon SES Developer Guide.
- Parameters:
dkimTokens
- A set of character strings that represent the domain's identity. Using these tokens, you need to create DNS CNAME records that point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services eventually detects that you've updated your DNS records. This detection process might take up to 72 hours. After successful detection, Amazon SES is able to DKIM-sign email originating from that domain. (This only applies to domain identities, not email address identities.)For more information about creating DNS records using DKIM tokens, see the Amazon SES Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dkimTokens
IdentityDkimAttributes.Builder dkimTokens(String... dkimTokens)
A set of character strings that represent the domain's identity. Using these tokens, you need to create DNS CNAME records that point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services eventually detects that you've updated your DNS records. This detection process might take up to 72 hours. After successful detection, Amazon SES is able to DKIM-sign email originating from that domain. (This only applies to domain identities, not email address identities.)
For more information about creating DNS records using DKIM tokens, see the Amazon SES Developer Guide.
- Parameters:
dkimTokens
- A set of character strings that represent the domain's identity. Using these tokens, you need to create DNS CNAME records that point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services eventually detects that you've updated your DNS records. This detection process might take up to 72 hours. After successful detection, Amazon SES is able to DKIM-sign email originating from that domain. (This only applies to domain identities, not email address identities.)For more information about creating DNS records using DKIM tokens, see the Amazon SES Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-