#[non_exhaustive]pub struct CreateCustomVerificationEmailTemplateInput { /* private fields */ }
Expand description
Represents a request to create a custom verification email template.
Implementations§
source§impl CreateCustomVerificationEmailTemplateInput
impl CreateCustomVerificationEmailTemplateInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateCustomVerificationEmailTemplate, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateCustomVerificationEmailTemplate, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateCustomVerificationEmailTemplate
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateCustomVerificationEmailTemplateInput
.
source§impl CreateCustomVerificationEmailTemplateInput
impl CreateCustomVerificationEmailTemplateInput
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the custom verification email template.
sourcepub fn from_email_address(&self) -> Option<&str>
pub fn from_email_address(&self) -> Option<&str>
The email address that the custom verification email is sent from.
sourcepub fn template_subject(&self) -> Option<&str>
pub fn template_subject(&self) -> Option<&str>
The subject line of the custom verification email.
sourcepub fn template_content(&self) -> Option<&str>
pub fn template_content(&self) -> Option<&str>
The content of the custom verification email. The total size of the email must be less than 10 MB. The message body may contain HTML, with some limitations. For more information, see Custom Verification Email Frequently Asked Questions in the Amazon SES Developer Guide.
sourcepub fn success_redirection_url(&self) -> Option<&str>
pub fn success_redirection_url(&self) -> Option<&str>
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
sourcepub fn failure_redirection_url(&self) -> Option<&str>
pub fn failure_redirection_url(&self) -> Option<&str>
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
Trait Implementations§
source§impl Clone for CreateCustomVerificationEmailTemplateInput
impl Clone for CreateCustomVerificationEmailTemplateInput
source§fn clone(&self) -> CreateCustomVerificationEmailTemplateInput
fn clone(&self) -> CreateCustomVerificationEmailTemplateInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<CreateCustomVerificationEmailTemplateInput> for CreateCustomVerificationEmailTemplateInput
impl PartialEq<CreateCustomVerificationEmailTemplateInput> for CreateCustomVerificationEmailTemplateInput
source§fn eq(&self, other: &CreateCustomVerificationEmailTemplateInput) -> bool
fn eq(&self, other: &CreateCustomVerificationEmailTemplateInput) -> bool
self
and other
values to be equal, and is used
by ==
.