[][src]Struct rusoto_sesv2::PutEmailIdentityFeedbackAttributesRequest

pub struct PutEmailIdentityFeedbackAttributesRequest {
    pub email_forwarding_enabled: Option<bool>,
    pub email_identity: String,
}

A request to set the attributes that control how bounce and complaint events are processed.

Fields

email_forwarding_enabled: Option<bool>

Sets 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).

email_identity: String

The email identity that you want to configure bounce and complaint feedback forwarding for.

Trait Implementations

impl Clone for PutEmailIdentityFeedbackAttributesRequest[src]

impl Debug for PutEmailIdentityFeedbackAttributesRequest[src]

impl Default for PutEmailIdentityFeedbackAttributesRequest[src]

impl PartialEq<PutEmailIdentityFeedbackAttributesRequest> for PutEmailIdentityFeedbackAttributesRequest[src]

impl Serialize for PutEmailIdentityFeedbackAttributesRequest[src]

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