Struct rusoto_ses::IdentityMailFromDomainAttributes[][src]

pub struct IdentityMailFromDomainAttributes {
    pub behavior_on_mx_failure: String,
    pub mail_from_domain: String,
    pub mail_from_domain_status: String,
}

Represents the custom MAIL FROM domain attributes of a verified identity (email address or domain).

Fields

The action that Amazon SES takes if it cannot successfully read the required MX record when you send an email. A value of UseDefaultValue indicates that if Amazon SES cannot read the required MX record, it uses amazonses.com (or a subdomain of that) as the MAIL FROM domain. A value of RejectMessage indicates that if Amazon SES cannot read the required MX record, Amazon SES returns a MailFromDomainNotVerified error and does not send the email.

The custom MAIL FROM setup states that result in this behavior are Pending, Failed, and TemporaryFailure.

The custom MAIL FROM domain that the identity is configured to use.

The state that indicates whether Amazon SES has successfully read the MX record required for custom MAIL FROM domain setup. If the state is Success, Amazon SES uses the specified custom MAIL FROM domain when the verified identity sends an email. All other states indicate that Amazon SES takes the action described by BehaviorOnMXFailure.

Trait Implementations

impl Default for IdentityMailFromDomainAttributes
[src]

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

impl Debug for IdentityMailFromDomainAttributes
[src]

Formats the value using the given formatter. Read more

impl Clone for IdentityMailFromDomainAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for IdentityMailFromDomainAttributes
[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