[][src]Struct rusoto_sesv2::IdentityInfo

pub struct IdentityInfo {
    pub identity_name: Option<String>,
    pub identity_type: Option<String>,
    pub sending_enabled: Option<bool>,
}

Information about an email identity.

Fields

identity_name: Option<String>

The address or domain of the identity.

identity_type: Option<String>

The email identity type. The identity type can be one of the following:

  • EMAILADDRESS – The identity is an email address.

  • DOMAIN – The identity is a domain.

  • MANAGEDDOMAIN – The identity is a domain that is managed by AWS.

sending_enabled: Option<bool>

Indicates whether or not you can send email from the identity.

An identity is an email address or domain that you send email from. Before you can send email from an identity, you have to demostrate that you own the identity, and that you authorize Amazon SES to send email from that identity.

Trait Implementations

impl Clone for IdentityInfo[src]

impl Debug for IdentityInfo[src]

impl Default for IdentityInfo[src]

impl<'de> Deserialize<'de> for IdentityInfo[src]

impl PartialEq<IdentityInfo> for IdentityInfo[src]

impl StructuralPartialEq for IdentityInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.