aws_sdk_ses/client/delete_custom_verification_email_template.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteCustomVerificationEmailTemplate`](crate::operation::delete_custom_verification_email_template::builders::DeleteCustomVerificationEmailTemplateFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`template_name(impl Into<String>)`](crate::operation::delete_custom_verification_email_template::builders::DeleteCustomVerificationEmailTemplateFluentBuilder::template_name) / [`set_template_name(Option<String>)`](crate::operation::delete_custom_verification_email_template::builders::DeleteCustomVerificationEmailTemplateFluentBuilder::set_template_name):<br>required: **true**<br><p>The name of the custom verification email template to delete.</p><br>
7 /// - On success, responds with [`DeleteCustomVerificationEmailTemplateOutput`](crate::operation::delete_custom_verification_email_template::DeleteCustomVerificationEmailTemplateOutput)
8 /// - On failure, responds with [`SdkError<DeleteCustomVerificationEmailTemplateError>`](crate::operation::delete_custom_verification_email_template::DeleteCustomVerificationEmailTemplateError)
9 pub fn delete_custom_verification_email_template(
10 &self,
11 ) -> crate::operation::delete_custom_verification_email_template::builders::DeleteCustomVerificationEmailTemplateFluentBuilder {
12 crate::operation::delete_custom_verification_email_template::builders::DeleteCustomVerificationEmailTemplateFluentBuilder::new(
13 self.handle.clone(),
14 )
15 }
16}