[][src]Struct rusoto_sesv2::CreateEmailIdentityResponse

pub struct CreateEmailIdentityResponse {
    pub dkim_attributes: Option<DkimAttributes>,
    pub identity_type: Option<String>,
    pub verified_for_sending_status: Option<bool>,
}

If the email identity is a domain, this object contains information about the DKIM verification status for the domain.

If the email identity is an email address, this object is empty.

Fields

dkim_attributes: Option<DkimAttributes>

An object that contains information about the DKIM attributes for the identity.

identity_type: Option<String>

The email identity type.

verified_for_sending_status: Option<bool>

Specifies whether or not the identity is verified. You can only send email from verified email addresses or domains. For more information about verifying identities, see the Amazon Pinpoint User Guide.

Trait Implementations

impl Clone for CreateEmailIdentityResponse[src]

impl Debug for CreateEmailIdentityResponse[src]

impl Default for CreateEmailIdentityResponse[src]

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

impl PartialEq<CreateEmailIdentityResponse> for CreateEmailIdentityResponse[src]

impl StructuralPartialEq for CreateEmailIdentityResponse[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, 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.