aws_sdk_elasticbeanstalk/client/delete_configuration_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 [`DeleteConfigurationTemplate`](crate::operation::delete_configuration_template::builders::DeleteConfigurationTemplateFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`application_name(impl 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):<br>required: **true**<br><p>The name of the application to delete the configuration template from.</p><br>
7 /// - [`template_name(impl 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):<br>required: **true**<br><p>The name of the configuration template to delete.</p><br>
8 /// - On success, responds with [`DeleteConfigurationTemplateOutput`](crate::operation::delete_configuration_template::DeleteConfigurationTemplateOutput)
9 /// - On failure, responds with [`SdkError<DeleteConfigurationTemplateError>`](crate::operation::delete_configuration_template::DeleteConfigurationTemplateError)
10 pub fn delete_configuration_template(
11 &self,
12 ) -> crate::operation::delete_configuration_template::builders::DeleteConfigurationTemplateFluentBuilder {
13 crate::operation::delete_configuration_template::builders::DeleteConfigurationTemplateFluentBuilder::new(self.handle.clone())
14 }
15}