public class VerifyDomainDkimResult
extends java.lang.Object
implements java.io.Serializable
Represents the DNS records that must be published in the domain name's DNS to complete DKIM setup.
| コンストラクタと説明 |
|---|
VerifyDomainDkimResult() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.util.List<java.lang.String> |
getDkimTokens()
A set of DNS records (tokens) that must be published in the domain
name's DNS for DKIM verification to complete, and which must remain
published in order for DKIM signing to succeed.
|
int |
hashCode() |
void |
setDkimTokens(java.util.Collection<java.lang.String> dkimTokens)
A set of DNS records (tokens) that must be published in the domain
name's DNS for DKIM verification to complete, and which must remain
published in order for DKIM signing to succeed.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
VerifyDomainDkimResult |
withDkimTokens(java.util.Collection<java.lang.String> dkimTokens)
A set of DNS records (tokens) that must be published in the domain
name's DNS for DKIM verification to complete, and which must remain
published in order for DKIM signing to succeed.
|
VerifyDomainDkimResult |
withDkimTokens(java.lang.String... dkimTokens)
A set of DNS records (tokens) that must be published in the domain
name's DNS for DKIM verification to complete, and which must remain
published in order for DKIM signing to succeed.
|
public java.util.List<java.lang.String> getDkimTokens()
public void setDkimTokens(java.util.Collection<java.lang.String> dkimTokens)
dkimTokens - A set of DNS records (tokens) that must be published in the domain
name's DNS for DKIM verification to complete, and which must remain
published in order for DKIM signing to succeed. The tokens are CNAME
DNS records pointing to DKIM public keys hosted by Amazon SES.public VerifyDomainDkimResult withDkimTokens(java.lang.String... dkimTokens)
Returns a reference to this object so that method calls can be chained together.
dkimTokens - A set of DNS records (tokens) that must be published in the domain
name's DNS for DKIM verification to complete, and which must remain
published in order for DKIM signing to succeed. The tokens are CNAME
DNS records pointing to DKIM public keys hosted by Amazon SES.public VerifyDomainDkimResult withDkimTokens(java.util.Collection<java.lang.String> dkimTokens)
Returns a reference to this object so that method calls can be chained together.
dkimTokens - A set of DNS records (tokens) that must be published in the domain
name's DNS for DKIM verification to complete, and which must remain
published in order for DKIM signing to succeed. The tokens are CNAME
DNS records pointing to DKIM public keys hosted by Amazon SES.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object