Struct rusoto_ses::VerifyDomainDkimResponse[][src]

pub struct VerifyDomainDkimResponse {
    pub dkim_tokens: Vec<String>,
}

Returns CNAME records that you must publish to the DNS server of your domain to set up Easy DKIM with Amazon SES.

Fields

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.

Trait Implementations

impl Default for VerifyDomainDkimResponse
[src]

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

impl Debug for VerifyDomainDkimResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for VerifyDomainDkimResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VerifyDomainDkimResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations