[][src]Struct rusoto_sesv2::GetEmailIdentityResponse

pub struct GetEmailIdentityResponse {
    pub dkim_attributes: Option<DkimAttributes>,
    pub feedback_forwarding_status: Option<bool>,
    pub identity_type: Option<String>,
    pub mail_from_attributes: Option<MailFromAttributes>,
    pub policies: Option<HashMap<String, String>>,
    pub tags: Option<Vec<Tag>>,
    pub verified_for_sending_status: Option<bool>,
}

Details about an email identity.

Fields

dkim_attributes: Option<DkimAttributes>

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

feedback_forwarding_status: Option<bool>

The feedback forwarding configuration for the identity.

If the value is true, you receive email notifications when bounce or complaint events occur. These notifications are sent to the address that you specified in the Return-Path header of the original email.

You're required to have a method of tracking bounces and complaints. If you haven't set up another mechanism for receiving bounce or complaint notifications (for example, by setting up an event destination), you receive an email notification when these events occur (even if this setting is disabled).

identity_type: Option<String>

The email identity type.

mail_from_attributes: Option<MailFromAttributes>

An object that contains information about the Mail-From attributes for the email identity.

policies: Option<HashMap<String, String>>

A map of policy names to policies.

tags: Option<Vec<Tag>>

An array of objects that define the tags (keys and values) that are associated with the email identity.

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 GetEmailIdentityResponse[src]

impl Debug for GetEmailIdentityResponse[src]

impl Default for GetEmailIdentityResponse[src]

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

impl PartialEq<GetEmailIdentityResponse> for GetEmailIdentityResponse[src]

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