#[non_exhaustive]pub struct CreateEmailTemplateInput {
pub template_name: Option<String>,
pub template_content: Option<EmailTemplateContent>,
}Expand description
Represents a request to create an email template. For more information, see the Amazon SES Developer Guide.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.template_name: Option<String>The name of the template.
template_content: Option<EmailTemplateContent>The content of the email template, composed of a subject line, an HTML part, and a text-only part.
Implementations§
source§impl CreateEmailTemplateInput
impl CreateEmailTemplateInput
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the template.
sourcepub fn template_content(&self) -> Option<&EmailTemplateContent>
pub fn template_content(&self) -> Option<&EmailTemplateContent>
The content of the email template, composed of a subject line, an HTML part, and a text-only part.
source§impl CreateEmailTemplateInput
impl CreateEmailTemplateInput
sourcepub fn builder() -> CreateEmailTemplateInputBuilder
pub fn builder() -> CreateEmailTemplateInputBuilder
Creates a new builder-style object to manufacture CreateEmailTemplateInput.
Trait Implementations§
source§impl Clone for CreateEmailTemplateInput
impl Clone for CreateEmailTemplateInput
source§fn clone(&self) -> CreateEmailTemplateInput
fn clone(&self) -> CreateEmailTemplateInput
Returns a copy of the value. Read more
1.0.0 · 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 CreateEmailTemplateInput
impl Debug for CreateEmailTemplateInput
source§impl PartialEq for CreateEmailTemplateInput
impl PartialEq for CreateEmailTemplateInput
source§fn eq(&self, other: &CreateEmailTemplateInput) -> bool
fn eq(&self, other: &CreateEmailTemplateInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateEmailTemplateInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateEmailTemplateInput
impl Send for CreateEmailTemplateInput
impl Sync for CreateEmailTemplateInput
impl Unpin for CreateEmailTemplateInput
impl UnwindSafe for CreateEmailTemplateInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.