aws_sdk_route53/client/
get_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 [`GetReusableDelegationSet`](crate::operation::get_reusable_delegation_set::builders::GetReusableDelegationSetFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`id(impl Into<String>)`](crate::operation::get_reusable_delegation_set::builders::GetReusableDelegationSetFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_reusable_delegation_set::builders::GetReusableDelegationSetFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the reusable delegation set that you want to get a list of name servers for.</p><br>
7    /// - On success, responds with [`GetReusableDelegationSetOutput`](crate::operation::get_reusable_delegation_set::GetReusableDelegationSetOutput) with field(s):
8    ///   - [`delegation_set(Option<DelegationSet>)`](crate::operation::get_reusable_delegation_set::GetReusableDelegationSetOutput::delegation_set): <p>A complex type that contains information about the reusable delegation set.</p>
9    /// - On failure, responds with [`SdkError<GetReusableDelegationSetError>`](crate::operation::get_reusable_delegation_set::GetReusableDelegationSetError)
10    pub fn get_reusable_delegation_set(&self) -> crate::operation::get_reusable_delegation_set::builders::GetReusableDelegationSetFluentBuilder {
11        crate::operation::get_reusable_delegation_set::builders::GetReusableDelegationSetFluentBuilder::new(self.handle.clone())
12    }
13}