aws_sdk_drs/client/delete_launch_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 [`DeleteLaunchConfigurationTemplate`](crate::operation::delete_launch_configuration_template::builders::DeleteLaunchConfigurationTemplateFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`launch_configuration_template_id(impl Into<String>)`](crate::operation::delete_launch_configuration_template::builders::DeleteLaunchConfigurationTemplateFluentBuilder::launch_configuration_template_id) / [`set_launch_configuration_template_id(Option<String>)`](crate::operation::delete_launch_configuration_template::builders::DeleteLaunchConfigurationTemplateFluentBuilder::set_launch_configuration_template_id):<br>required: **true**<br><p>The ID of the Launch Configuration Template to be deleted.</p><br>
7 /// - On success, responds with [`DeleteLaunchConfigurationTemplateOutput`](crate::operation::delete_launch_configuration_template::DeleteLaunchConfigurationTemplateOutput)
8 /// - On failure, responds with [`SdkError<DeleteLaunchConfigurationTemplateError>`](crate::operation::delete_launch_configuration_template::DeleteLaunchConfigurationTemplateError)
9 pub fn delete_launch_configuration_template(
10 &self,
11 ) -> crate::operation::delete_launch_configuration_template::builders::DeleteLaunchConfigurationTemplateFluentBuilder {
12 crate::operation::delete_launch_configuration_template::builders::DeleteLaunchConfigurationTemplateFluentBuilder::new(self.handle.clone())
13 }
14}