Struct aws_sdk_ses::operation::update_custom_verification_email_template::UpdateCustomVerificationEmailTemplateInput
source · #[non_exhaustive]pub struct UpdateCustomVerificationEmailTemplateInput {
pub template_name: Option<String>,
pub from_email_address: Option<String>,
pub template_subject: Option<String>,
pub template_content: Option<String>,
pub success_redirection_url: Option<String>,
pub failure_redirection_url: Option<String>,
}
Expand description
Represents a request to update an existing custom verification email template.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.template_name: Option<String>
The name of the custom verification email template to update.
from_email_address: Option<String>
The email address that the custom verification email is sent from.
template_subject: Option<String>
The subject line of the custom verification email.
template_content: Option<String>
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.
success_redirection_url: Option<String>
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
failure_redirection_url: Option<String>
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
Implementations§
source§impl UpdateCustomVerificationEmailTemplateInput
impl UpdateCustomVerificationEmailTemplateInput
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the custom verification email template to update.
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.
source§impl UpdateCustomVerificationEmailTemplateInput
impl UpdateCustomVerificationEmailTemplateInput
sourcepub fn builder() -> UpdateCustomVerificationEmailTemplateInputBuilder
pub fn builder() -> UpdateCustomVerificationEmailTemplateInputBuilder
Creates a new builder-style object to manufacture UpdateCustomVerificationEmailTemplateInput
.
Trait Implementations§
source§impl Clone for UpdateCustomVerificationEmailTemplateInput
impl Clone for UpdateCustomVerificationEmailTemplateInput
source§fn clone(&self) -> UpdateCustomVerificationEmailTemplateInput
fn clone(&self) -> UpdateCustomVerificationEmailTemplateInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateCustomVerificationEmailTemplateInput
impl PartialEq for UpdateCustomVerificationEmailTemplateInput
source§fn eq(&self, other: &UpdateCustomVerificationEmailTemplateInput) -> bool
fn eq(&self, other: &UpdateCustomVerificationEmailTemplateInput) -> bool
self
and other
values to be equal, and is used
by ==
.