aws_sdk_route53/client/delete_reusable_delegation_set.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 [`DeleteReusableDelegationSet`](crate::operation::delete_reusable_delegation_set::builders::DeleteReusableDelegationSetFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`id(impl Into<String>)`](crate::operation::delete_reusable_delegation_set::builders::DeleteReusableDelegationSetFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::delete_reusable_delegation_set::builders::DeleteReusableDelegationSetFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the reusable delegation set that you want to delete.</p><br>
7 /// - On success, responds with [`DeleteReusableDelegationSetOutput`](crate::operation::delete_reusable_delegation_set::DeleteReusableDelegationSetOutput)
8 /// - On failure, responds with [`SdkError<DeleteReusableDelegationSetError>`](crate::operation::delete_reusable_delegation_set::DeleteReusableDelegationSetError)
9 pub fn delete_reusable_delegation_set(
10 &self,
11 ) -> crate::operation::delete_reusable_delegation_set::builders::DeleteReusableDelegationSetFluentBuilder {
12 crate::operation::delete_reusable_delegation_set::builders::DeleteReusableDelegationSetFluentBuilder::new(self.handle.clone())
13 }
14}