[][src]Struct rusoto_ses::BouncedRecipientInfo

pub struct BouncedRecipientInfo {
    pub bounce_type: Option<String>,
    pub recipient: String,
    pub recipient_arn: Option<String>,
    pub recipient_dsn_fields: Option<RecipientDsnFields>,
}

Recipient-related information to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces.

For information about receiving email through Amazon SES, see the Amazon SES Developer Guide.

Fields

bounce_type: Option<String>

The reason for the bounce. You must provide either this parameter or RecipientDsnFields.

recipient: String

The email address of the recipient of the bounced email.

recipient_arn: Option<String>

This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to receive email for the recipient of the bounced email. For more information about sending authorization, see the Amazon SES Developer Guide.

recipient_dsn_fields: Option<RecipientDsnFields>

Recipient-related DSN fields, most of which would normally be filled in automatically when provided with a BounceType. You must provide either this parameter or BounceType.

Trait Implementations

impl Clone for BouncedRecipientInfo[src]

impl Debug for BouncedRecipientInfo[src]

impl Default for BouncedRecipientInfo[src]

impl PartialEq<BouncedRecipientInfo> for BouncedRecipientInfo[src]

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