pub struct SendCustomVerificationEmail { /* private fields */ }
Expand description
Fluent builder constructing a request to SendCustomVerificationEmail
.
Adds an email address to the list of identities for your Amazon SES account in the current AWS Region and attempts to verify it. As a result of executing this operation, a customized verification email is sent to the specified address.
To use this operation, you must first create a custom verification email template. For more information about creating and using custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.
You can execute this operation no more than once per second.
Implementations§
source§impl SendCustomVerificationEmail
impl SendCustomVerificationEmail
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<SendCustomVerificationEmail, AwsResponseRetryClassifier>, SdkError<SendCustomVerificationEmailError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<SendCustomVerificationEmail, AwsResponseRetryClassifier>, SdkError<SendCustomVerificationEmailError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<SendCustomVerificationEmailOutput, SdkError<SendCustomVerificationEmailError>>
pub async fn send(
self
) -> Result<SendCustomVerificationEmailOutput, SdkError<SendCustomVerificationEmailError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
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.
Trait Implementations§
source§impl Clone for SendCustomVerificationEmail
impl Clone for SendCustomVerificationEmail
source§fn clone(&self) -> SendCustomVerificationEmail
fn clone(&self) -> SendCustomVerificationEmail
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more