pub struct SendEmailInput {
pub configuration_set_name: Option<String>,
pub destination: Destination,
pub message: Message,
pub reply_to_addresses: Vec<String>,
pub return_path: Option<String>,
pub return_path_arn: Option<String>,
pub source: String,
pub source_arn: Option<String>,
pub tags: Vec<MessageTag>,
}Expand description
SES SendEmailInput.
Fields§
§configuration_set_name: Option<String>§destination: Destination§message: Message§reply_to_addresses: Vec<String>§return_path: Option<String>§return_path_arn: Option<String>§source: String§source_arn: Option<String>Trait Implementations§
Source§impl Clone for SendEmailInput
impl Clone for SendEmailInput
Source§fn clone(&self) -> SendEmailInput
fn clone(&self) -> SendEmailInput
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 SendEmailInput
impl Debug for SendEmailInput
Source§impl Default for SendEmailInput
impl Default for SendEmailInput
Source§fn default() -> SendEmailInput
fn default() -> SendEmailInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SendEmailInput
impl<'de> Deserialize<'de> for SendEmailInput
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 SendEmailInput
impl RefUnwindSafe for SendEmailInput
impl Send for SendEmailInput
impl Sync for SendEmailInput
impl Unpin for SendEmailInput
impl UnsafeUnpin for SendEmailInput
impl UnwindSafe for SendEmailInput
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