aws_sdk_autoscaling/client/delete_lifecycle_hook.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 [`DeleteLifecycleHook`](crate::operation::delete_lifecycle_hook::builders::DeleteLifecycleHookFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`lifecycle_hook_name(impl Into<String>)`](crate::operation::delete_lifecycle_hook::builders::DeleteLifecycleHookFluentBuilder::lifecycle_hook_name) / [`set_lifecycle_hook_name(Option<String>)`](crate::operation::delete_lifecycle_hook::builders::DeleteLifecycleHookFluentBuilder::set_lifecycle_hook_name):<br>required: **true**<br><p>The name of the lifecycle hook.</p><br>
7 /// - [`auto_scaling_group_name(impl Into<String>)`](crate::operation::delete_lifecycle_hook::builders::DeleteLifecycleHookFluentBuilder::auto_scaling_group_name) / [`set_auto_scaling_group_name(Option<String>)`](crate::operation::delete_lifecycle_hook::builders::DeleteLifecycleHookFluentBuilder::set_auto_scaling_group_name):<br>required: **true**<br><p>The name of the Auto Scaling group.</p><br>
8 /// - On success, responds with [`DeleteLifecycleHookOutput`](crate::operation::delete_lifecycle_hook::DeleteLifecycleHookOutput)
9 /// - On failure, responds with [`SdkError<DeleteLifecycleHookError>`](crate::operation::delete_lifecycle_hook::DeleteLifecycleHookError)
10 pub fn delete_lifecycle_hook(&self) -> crate::operation::delete_lifecycle_hook::builders::DeleteLifecycleHookFluentBuilder {
11 crate::operation::delete_lifecycle_hook::builders::DeleteLifecycleHookFluentBuilder::new(self.handle.clone())
12 }
13}