1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteConfigurationTemplate`](crate::operation::delete_configuration_template::builders::DeleteConfigurationTemplateFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_name(impl ::std::convert::Into<String>)`](crate::operation::delete_configuration_template::builders::DeleteConfigurationTemplateFluentBuilder::application_name) / [`set_application_name(Option<String>)`](crate::operation::delete_configuration_template::builders::DeleteConfigurationTemplateFluentBuilder::set_application_name): <p>The name of the application to delete the configuration template from.</p>
    ///   - [`template_name(impl ::std::convert::Into<String>)`](crate::operation::delete_configuration_template::builders::DeleteConfigurationTemplateFluentBuilder::template_name) / [`set_template_name(Option<String>)`](crate::operation::delete_configuration_template::builders::DeleteConfigurationTemplateFluentBuilder::set_template_name): <p>The name of the configuration template to delete.</p>
    /// - On success, responds with [`DeleteConfigurationTemplateOutput`](crate::operation::delete_configuration_template::DeleteConfigurationTemplateOutput)
    /// - On failure, responds with [`SdkError<DeleteConfigurationTemplateError>`](crate::operation::delete_configuration_template::DeleteConfigurationTemplateError)
    pub fn delete_configuration_template(
        &self,
    ) -> crate::operation::delete_configuration_template::builders::DeleteConfigurationTemplateFluentBuilder {
        crate::operation::delete_configuration_template::builders::DeleteConfigurationTemplateFluentBuilder::new(self.handle.clone())
    }
}