[][src]Struct rusoto_ses::SendBounceRequest

pub struct SendBounceRequest {
    pub bounce_sender: String,
    pub bounce_sender_arn: Option<String>,
    pub bounced_recipient_info_list: Vec<BouncedRecipientInfo>,
    pub explanation: Option<String>,
    pub message_dsn: Option<MessageDsn>,
    pub original_message_id: String,
}

Represents a request to send a bounce message to the sender of an email you received through Amazon SES.

Fields

bounce_sender: String

The address to use in the "From" header of the bounce message. This must be an identity that you have verified with Amazon SES.

bounce_sender_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 use the address in the "From" header of the bounce. For more information about sending authorization, see the Amazon SES Developer Guide.

bounced_recipient_info_list: Vec<BouncedRecipientInfo>

A list of recipients of the bounced message, including the information required to create the Delivery Status Notifications (DSNs) for the recipients. You must specify at least one BouncedRecipientInfo in the list.

explanation: Option<String>

Human-readable text for the bounce message to explain the failure. If not specified, the text will be auto-generated based on the bounced recipient information.

message_dsn: Option<MessageDsn>

Message-related DSN fields. If not specified, Amazon SES will choose the values.

original_message_id: String

The message ID of the message to be bounced.

Trait Implementations

impl PartialEq<SendBounceRequest> for SendBounceRequest[src]

impl Default for SendBounceRequest[src]

impl Clone for SendBounceRequest[src]

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

Performs copy-assignment from source. Read more

impl Debug for SendBounceRequest[src]

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

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