[][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 PartialEq<BouncedRecipientInfo> for BouncedRecipientInfo[src]

impl Default for BouncedRecipientInfo[src]

impl Clone for BouncedRecipientInfo[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for BouncedRecipientInfo[src]

Auto Trait Implementations

impl Send for BouncedRecipientInfo

impl Sync for BouncedRecipientInfo

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self