Class VerifyDomainDkimResult
- java.lang.Object
-
- com.amazonaws.services.simpleemail.model.VerifyDomainDkimResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class VerifyDomainDkimResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VerifyDomainDkimResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VerifyDomainDkimResult
clone()
boolean
equals(Object obj)
List<String>
getDkimTokens()
A set of character strings that represent the domain's identity.int
hashCode()
void
setDkimTokens(Collection<String> dkimTokens)
A set of character strings that represent the domain's identity.String
toString()
Returns a string representation of this object; useful for testing and debugging.VerifyDomainDkimResult
withDkimTokens(String... dkimTokens)
A set of character strings that represent the domain's identity.VerifyDomainDkimResult
withDkimTokens(Collection<String> dkimTokens)
A set of character strings that represent the domain's identity.
-
-
-
Method Detail
-
getDkimTokens
public List<String> getDkimTokens()
A set of character strings that represent the domain's identity. If the identity is an email address, the tokens represent the domain of that address.
Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign emails originating from that domain.
For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.
- Returns:
- A set of character strings that represent the domain's identity.
If the identity is an email address, the tokens represent the
domain of that address.
Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign emails originating from that domain.
For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.
-
setDkimTokens
public void setDkimTokens(Collection<String> dkimTokens)
A set of character strings that represent the domain's identity. If the identity is an email address, the tokens represent the domain of that address.
Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign emails originating from that domain.
For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.
- Parameters:
dkimTokens
- A set of character strings that represent the domain's identity. If the identity is an email address, the tokens represent the domain of that address.Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign emails originating from that domain.
For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.
-
withDkimTokens
public VerifyDomainDkimResult withDkimTokens(String... dkimTokens)
A set of character strings that represent the domain's identity. If the identity is an email address, the tokens represent the domain of that address.
Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign emails originating from that domain.
For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.
NOTE: This method appends the values to the existing list (if any). Use
setDkimTokens(java.util.Collection)
orwithDkimTokens(java.util.Collection)
if you want to override the existing values.- Parameters:
dkimTokens
- A set of character strings that represent the domain's identity. If the identity is an email address, the tokens represent the domain of that address.Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign emails originating from that domain.
For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withDkimTokens
public VerifyDomainDkimResult withDkimTokens(Collection<String> dkimTokens)
A set of character strings that represent the domain's identity. If the identity is an email address, the tokens represent the domain of that address.
Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign emails originating from that domain.
For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.
- Parameters:
dkimTokens
- A set of character strings that represent the domain's identity. If the identity is an email address, the tokens represent the domain of that address.Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign emails originating from that domain.
For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public VerifyDomainDkimResult clone()
-
-