Struct aws_sdk_ses::operation::send_custom_verification_email::SendCustomVerificationEmailInput
source · #[non_exhaustive]pub struct SendCustomVerificationEmailInput {
pub email_address: Option<String>,
pub template_name: Option<String>,
pub configuration_set_name: Option<String>,
}
Expand description
Represents a request to send a custom verification email to a specified recipient.
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.email_address: Option<String>
The email address to verify.
template_name: Option<String>
The name of the custom verification email template to use when sending the verification email.
configuration_set_name: Option<String>
Name of a configuration set to use when sending the verification email.
Implementations§
source§impl SendCustomVerificationEmailInput
impl SendCustomVerificationEmailInput
sourcepub fn email_address(&self) -> Option<&str>
pub fn email_address(&self) -> Option<&str>
The email address to verify.
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the custom verification email template to use when sending the verification email.
sourcepub fn configuration_set_name(&self) -> Option<&str>
pub fn configuration_set_name(&self) -> Option<&str>
Name of a configuration set to use when sending the verification email.
source§impl SendCustomVerificationEmailInput
impl SendCustomVerificationEmailInput
sourcepub fn builder() -> SendCustomVerificationEmailInputBuilder
pub fn builder() -> SendCustomVerificationEmailInputBuilder
Creates a new builder-style object to manufacture SendCustomVerificationEmailInput
.
Trait Implementations§
source§impl Clone for SendCustomVerificationEmailInput
impl Clone for SendCustomVerificationEmailInput
source§fn clone(&self) -> SendCustomVerificationEmailInput
fn clone(&self) -> SendCustomVerificationEmailInput
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 PartialEq for SendCustomVerificationEmailInput
impl PartialEq for SendCustomVerificationEmailInput
source§fn eq(&self, other: &SendCustomVerificationEmailInput) -> bool
fn eq(&self, other: &SendCustomVerificationEmailInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SendCustomVerificationEmailInput
Auto Trait Implementations§
impl RefUnwindSafe for SendCustomVerificationEmailInput
impl Send for SendCustomVerificationEmailInput
impl Sync for SendCustomVerificationEmailInput
impl Unpin for SendCustomVerificationEmailInput
impl UnwindSafe for SendCustomVerificationEmailInput
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.