Struct rusoto_ses::BouncedRecipientInfo[][src]

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

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

The email address of the recipient of the bounced email.

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

Returns the "default value" for a type. Read more

impl Debug for BouncedRecipientInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for BouncedRecipientInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for BouncedRecipientInfo
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations