Struct aws_sdk_ses::operation::update_custom_verification_email_template::builders::UpdateCustomVerificationEmailTemplateInputBuilder
source · #[non_exhaustive]pub struct UpdateCustomVerificationEmailTemplateInputBuilder { /* private fields */ }
Expand description
A builder for UpdateCustomVerificationEmailTemplateInput
.
Implementations§
source§impl UpdateCustomVerificationEmailTemplateInputBuilder
impl UpdateCustomVerificationEmailTemplateInputBuilder
sourcepub fn template_name(self, input: impl Into<String>) -> Self
pub fn template_name(self, input: impl Into<String>) -> Self
The name of the custom verification email template to update.
This field is required.sourcepub fn set_template_name(self, input: Option<String>) -> Self
pub fn set_template_name(self, input: Option<String>) -> Self
The name of the custom verification email template to update.
sourcepub fn get_template_name(&self) -> &Option<String>
pub fn get_template_name(&self) -> &Option<String>
The name of the custom verification email template to update.
sourcepub fn from_email_address(self, input: impl Into<String>) -> Self
pub fn from_email_address(self, input: impl Into<String>) -> Self
The email address that the custom verification email is sent from.
sourcepub fn set_from_email_address(self, input: Option<String>) -> Self
pub fn set_from_email_address(self, input: Option<String>) -> Self
The email address that the custom verification email is sent from.
sourcepub fn get_from_email_address(&self) -> &Option<String>
pub fn get_from_email_address(&self) -> &Option<String>
The email address that the custom verification email is sent from.
sourcepub fn template_subject(self, input: impl Into<String>) -> Self
pub fn template_subject(self, input: impl Into<String>) -> Self
The subject line of the custom verification email.
sourcepub fn set_template_subject(self, input: Option<String>) -> Self
pub fn set_template_subject(self, input: Option<String>) -> Self
The subject line of the custom verification email.
sourcepub fn get_template_subject(&self) -> &Option<String>
pub fn get_template_subject(&self) -> &Option<String>
The subject line of the custom verification email.
sourcepub fn template_content(self, input: impl Into<String>) -> Self
pub fn template_content(self, input: impl Into<String>) -> Self
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 set_template_content(self, input: Option<String>) -> Self
pub fn set_template_content(self, input: Option<String>) -> Self
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 get_template_content(&self) -> &Option<String>
pub fn get_template_content(&self) -> &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.
sourcepub fn success_redirection_url(self, input: impl Into<String>) -> Self
pub fn success_redirection_url(self, input: impl Into<String>) -> Self
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
sourcepub fn set_success_redirection_url(self, input: Option<String>) -> Self
pub fn set_success_redirection_url(self, input: Option<String>) -> Self
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
sourcepub fn get_success_redirection_url(&self) -> &Option<String>
pub fn get_success_redirection_url(&self) -> &Option<String>
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, input: impl Into<String>) -> Self
pub fn failure_redirection_url(self, input: impl Into<String>) -> Self
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
sourcepub fn set_failure_redirection_url(self, input: Option<String>) -> Self
pub fn set_failure_redirection_url(self, input: Option<String>) -> Self
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
sourcepub fn get_failure_redirection_url(&self) -> &Option<String>
pub fn get_failure_redirection_url(&self) -> &Option<String>
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
sourcepub fn build(
self
) -> Result<UpdateCustomVerificationEmailTemplateInput, BuildError>
pub fn build( self ) -> Result<UpdateCustomVerificationEmailTemplateInput, BuildError>
Consumes the builder and constructs a UpdateCustomVerificationEmailTemplateInput
.
source§impl UpdateCustomVerificationEmailTemplateInputBuilder
impl UpdateCustomVerificationEmailTemplateInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateCustomVerificationEmailTemplateOutput, SdkError<UpdateCustomVerificationEmailTemplateError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateCustomVerificationEmailTemplateOutput, SdkError<UpdateCustomVerificationEmailTemplateError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateCustomVerificationEmailTemplateInputBuilder
impl Clone for UpdateCustomVerificationEmailTemplateInputBuilder
source§fn clone(&self) -> UpdateCustomVerificationEmailTemplateInputBuilder
fn clone(&self) -> UpdateCustomVerificationEmailTemplateInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateCustomVerificationEmailTemplateInputBuilder
impl Default for UpdateCustomVerificationEmailTemplateInputBuilder
source§fn default() -> UpdateCustomVerificationEmailTemplateInputBuilder
fn default() -> UpdateCustomVerificationEmailTemplateInputBuilder
source§impl PartialEq for UpdateCustomVerificationEmailTemplateInputBuilder
impl PartialEq for UpdateCustomVerificationEmailTemplateInputBuilder
source§fn eq(&self, other: &UpdateCustomVerificationEmailTemplateInputBuilder) -> bool
fn eq(&self, other: &UpdateCustomVerificationEmailTemplateInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.