1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetReusableDelegationSetLimit`](crate::operation::get_reusable_delegation_set_limit::builders::GetReusableDelegationSetLimitFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`r#type(ReusableDelegationSetLimitType)`](crate::operation::get_reusable_delegation_set_limit::builders::GetReusableDelegationSetLimitFluentBuilder::type) / [`set_type(Option<ReusableDelegationSetLimitType>)`](crate::operation::get_reusable_delegation_set_limit::builders::GetReusableDelegationSetLimitFluentBuilder::set_type):<br>required: **true**<br><p>Specify <code>MAX_ZONES_BY_REUSABLE_DELEGATION_SET</code> to get the maximum number of hosted zones that you can associate with the specified reusable delegation set.</p><br>
    ///   - [`delegation_set_id(impl Into<String>)`](crate::operation::get_reusable_delegation_set_limit::builders::GetReusableDelegationSetLimitFluentBuilder::delegation_set_id) / [`set_delegation_set_id(Option<String>)`](crate::operation::get_reusable_delegation_set_limit::builders::GetReusableDelegationSetLimitFluentBuilder::set_delegation_set_id):<br>required: **true**<br><p>The ID of the delegation set that you want to get the limit for.</p><br>
    /// - On success, responds with [`GetReusableDelegationSetLimitOutput`](crate::operation::get_reusable_delegation_set_limit::GetReusableDelegationSetLimitOutput) with field(s):
    ///   - [`limit(Option<ReusableDelegationSetLimit>)`](crate::operation::get_reusable_delegation_set_limit::GetReusableDelegationSetLimitOutput::limit): <p>The current setting for the limit on hosted zones that you can associate with the specified reusable delegation set.</p>
    ///   - [`count(i64)`](crate::operation::get_reusable_delegation_set_limit::GetReusableDelegationSetLimitOutput::count): <p>The current number of hosted zones that you can associate with the specified reusable delegation set.</p>
    /// - On failure, responds with [`SdkError<GetReusableDelegationSetLimitError>`](crate::operation::get_reusable_delegation_set_limit::GetReusableDelegationSetLimitError)
    pub fn get_reusable_delegation_set_limit(
        &self,
    ) -> crate::operation::get_reusable_delegation_set_limit::builders::GetReusableDelegationSetLimitFluentBuilder {
        crate::operation::get_reusable_delegation_set_limit::builders::GetReusableDelegationSetLimitFluentBuilder::new(self.handle.clone())
    }
}