pub struct Builder { /* private fields */ }
Expand description
A builder for SendCustomVerificationEmailInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn email_address(self, input: impl Into<String>) -> Self
pub fn email_address(self, input: impl Into<String>) -> Self
The email address to verify.
sourcepub fn set_email_address(self, input: Option<String>) -> Self
pub fn set_email_address(self, input: Option<String>) -> Self
The email address to verify.
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 use when sending the verification email.
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 use when sending the verification email.
sourcepub fn configuration_set_name(self, input: impl Into<String>) -> Self
pub fn configuration_set_name(self, input: impl Into<String>) -> Self
Name of a configuration set to use when sending the verification email.
sourcepub fn set_configuration_set_name(self, input: Option<String>) -> Self
pub fn set_configuration_set_name(self, input: Option<String>) -> Self
Name of a configuration set to use when sending the verification email.
sourcepub fn build(self) -> Result<SendCustomVerificationEmailInput, BuildError>
pub fn build(self) -> Result<SendCustomVerificationEmailInput, BuildError>
Consumes the builder and constructs a SendCustomVerificationEmailInput
.