Struct rusoto_ses::IdentityVerificationAttributes[][src]

pub struct IdentityVerificationAttributes {
    pub verification_status: String,
    pub verification_token: Option<String>,
}

Represents the verification attributes of a single identity.

Fields

The verification status of the identity: "Pending", "Success", "Failed", or "TemporaryFailure".

The verification token for a domain identity. Null for email address identities.

Trait Implementations

impl Default for IdentityVerificationAttributes
[src]

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

impl Debug for IdentityVerificationAttributes
[src]

Formats the value using the given formatter. Read more

impl Clone for IdentityVerificationAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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