Struct aws_sdk_ses::types::IdentityDkimAttributes
source · #[non_exhaustive]pub struct IdentityDkimAttributes { /* private fields */ }Expand description
Represents the DKIM attributes of a verified email address or a domain.
Implementations§
source§impl IdentityDkimAttributes
impl IdentityDkimAttributes
sourcepub fn dkim_enabled(&self) -> bool
pub fn dkim_enabled(&self) -> bool
Is true if DKIM signing is enabled for email sent from the identity. It's false otherwise. The default value is true.
sourcepub fn dkim_verification_status(&self) -> Option<&VerificationStatus>
pub fn dkim_verification_status(&self) -> Option<&VerificationStatus>
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.)
sourcepub fn dkim_tokens(&self) -> Option<&[String]>
pub fn dkim_tokens(&self) -> Option<&[String]>
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.
source§impl IdentityDkimAttributes
impl IdentityDkimAttributes
sourcepub fn builder() -> IdentityDkimAttributesBuilder
pub fn builder() -> IdentityDkimAttributesBuilder
Creates a new builder-style object to manufacture IdentityDkimAttributes.
Trait Implementations§
source§impl Clone for IdentityDkimAttributes
impl Clone for IdentityDkimAttributes
source§fn clone(&self) -> IdentityDkimAttributes
fn clone(&self) -> IdentityDkimAttributes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for IdentityDkimAttributes
impl Debug for IdentityDkimAttributes
source§impl PartialEq<IdentityDkimAttributes> for IdentityDkimAttributes
impl PartialEq<IdentityDkimAttributes> for IdentityDkimAttributes
source§fn eq(&self, other: &IdentityDkimAttributes) -> bool
fn eq(&self, other: &IdentityDkimAttributes) -> bool
self and other values to be equal, and is used
by ==.