1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateEmailTemplate`](crate::operation::update_email_template::builders::UpdateEmailTemplateFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`template_name(impl Into<String>)`](crate::operation::update_email_template::builders::UpdateEmailTemplateFluentBuilder::template_name) / [`set_template_name(Option<String>)`](crate::operation::update_email_template::builders::UpdateEmailTemplateFluentBuilder::set_template_name):<br>required: **true**<br><p>The name of the template.</p><br>
    ///   - [`template_content(EmailTemplateContent)`](crate::operation::update_email_template::builders::UpdateEmailTemplateFluentBuilder::template_content) / [`set_template_content(Option<EmailTemplateContent>)`](crate::operation::update_email_template::builders::UpdateEmailTemplateFluentBuilder::set_template_content):<br>required: **true**<br><p>The content of the email template, composed of a subject line, an HTML part, and a text-only part.</p><br>
    /// - On success, responds with [`UpdateEmailTemplateOutput`](crate::operation::update_email_template::UpdateEmailTemplateOutput)
    /// - On failure, responds with [`SdkError<UpdateEmailTemplateError>`](crate::operation::update_email_template::UpdateEmailTemplateError)
    pub fn update_email_template(&self) -> crate::operation::update_email_template::builders::UpdateEmailTemplateFluentBuilder {
        crate::operation::update_email_template::builders::UpdateEmailTemplateFluentBuilder::new(self.handle.clone())
    }
}