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