[−][src]Struct rusoto_ses::SendBounceRequest
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]
fn eq(&self, other: &SendBounceRequest) -> bool
[src]
fn ne(&self, other: &SendBounceRequest) -> bool
[src]
impl Default for SendBounceRequest
[src]
fn default() -> SendBounceRequest
[src]
impl Clone for SendBounceRequest
[src]
fn clone(&self) -> 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
impl Send for SendBounceRequest
impl Sync for SendBounceRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self