/** * 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.) * * @param 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.) * @return Returns a reference to this object so that method calls can be chained together. * @see VerificationStatus */ public void setDkimVerificationStatus(VerificationStatus dkimVerificationStatus) { this.dkimVerificationStatus = dkimVerificationStatus.toString(); }
/** * The verification status of the identity: "Pending", "Success", "Failed", or "TemporaryFailure". * * @param verificationStatus The verification status of the identity: "Pending", "Success", * "Failed", or "TemporaryFailure". * @see VerificationStatus */ public void setVerificationStatus(VerificationStatus verificationStatus) { this.verificationStatus = verificationStatus.toString(); }