pub struct SendRawEmailInput {
pub configuration_set_name: Option<String>,
pub destinations: Vec<String>,
pub from_arn: Option<String>,
pub raw_message: RawMessage,
pub return_path_arn: Option<String>,
pub source: Option<String>,
pub source_arn: Option<String>,
pub tags: Vec<MessageTag>,
}Expand description
SES SendRawEmailInput.
Fields§
§configuration_set_name: Option<String>§destinations: Vec<String>§from_arn: Option<String>§raw_message: RawMessage§return_path_arn: Option<String>§source: Option<String>§source_arn: Option<String>Trait Implementations§
Source§impl Clone for SendRawEmailInput
impl Clone for SendRawEmailInput
Source§fn clone(&self) -> SendRawEmailInput
fn clone(&self) -> SendRawEmailInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SendRawEmailInput
impl Debug for SendRawEmailInput
Source§impl Default for SendRawEmailInput
impl Default for SendRawEmailInput
Source§fn default() -> SendRawEmailInput
fn default() -> SendRawEmailInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SendRawEmailInput
impl<'de> Deserialize<'de> for SendRawEmailInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SendRawEmailInput
impl RefUnwindSafe for SendRawEmailInput
impl Send for SendRawEmailInput
impl Sync for SendRawEmailInput
impl Unpin for SendRawEmailInput
impl UnsafeUnpin for SendRawEmailInput
impl UnwindSafe for SendRawEmailInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more