Struct rusoto_ses::IdentityDkimAttributes [] [src]

pub struct IdentityDkimAttributes {
    pub dkim_enabled: bool,
    pub dkim_tokens: Option<Vec<String>>,
    pub dkim_verification_status: String,
}

Represents the DKIM attributes of a verified email address or a domain.

Fields

True if DKIM signing is enabled for email sent from the identity; false otherwise. The default value is true.

A set of character strings that represent the domain's identity. 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 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, go to the Amazon SES Developer Guide.

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.)

Trait Implementations

impl Default for IdentityDkimAttributes
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for IdentityDkimAttributes
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for IdentityDkimAttributes
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations