1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListAWSDefaultServiceQuotas`](crate::operation::list_aws_default_service_quotas::builders::ListAWSDefaultServiceQuotasFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_aws_default_service_quotas::builders::ListAWSDefaultServiceQuotasFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`service_code(impl Into<String>)`](crate::operation::list_aws_default_service_quotas::builders::ListAWSDefaultServiceQuotasFluentBuilder::service_code) / [`set_service_code(Option<String>)`](crate::operation::list_aws_default_service_quotas::builders::ListAWSDefaultServiceQuotasFluentBuilder::set_service_code):<br>required: **true**<br><p>Specifies the service identifier. To find the service code value for an Amazon Web Services service, use the <code>ListServices</code> operation.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_aws_default_service_quotas::builders::ListAWSDefaultServiceQuotasFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_aws_default_service_quotas::builders::ListAWSDefaultServiceQuotasFluentBuilder::set_next_token):<br>required: **false**<br><p>Specifies a value for receiving additional results after you receive a <code>NextToken</code> response in a previous request. A <code>NextToken</code> response indicates that more output is available. Set this parameter to the value of the previous call's <code>NextToken</code> response to indicate where the output should continue from.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_aws_default_service_quotas::builders::ListAWSDefaultServiceQuotasFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_aws_default_service_quotas::builders::ListAWSDefaultServiceQuotasFluentBuilder::set_max_results):<br>required: **false**<br><p>Specifies the maximum number of results that you want included on each page of the response. If you do not include this parameter, it defaults to a value appropriate to the operation. If additional items exist beyond those included in the current response, the <code>NextToken</code> response element is present and has a value (is not null). Include that value as the <code>NextToken</code> request parameter in the next call to the operation to get the next part of the results.</p><note>  <p>An API operation can return fewer results than the maximum even when there are more results available. You should check <code>NextToken</code> after every operation to ensure that you receive all of the results.</p> </note><br>
    /// - On success, responds with [`ListAwsDefaultServiceQuotasOutput`](crate::operation::list_aws_default_service_quotas::ListAwsDefaultServiceQuotasOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::list_aws_default_service_quotas::ListAwsDefaultServiceQuotasOutput::next_token): <p>If present, indicates that more output is available than is included in the current response. Use this value in the <code>NextToken</code> request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the <code>NextToken</code> response element comes back as <code>null</code>.</p>
    ///   - [`quotas(Option<Vec::<ServiceQuota>>)`](crate::operation::list_aws_default_service_quotas::ListAwsDefaultServiceQuotasOutput::quotas): <p>Information about the quotas.</p>
    /// - On failure, responds with [`SdkError<ListAWSDefaultServiceQuotasError>`](crate::operation::list_aws_default_service_quotas::ListAWSDefaultServiceQuotasError)
    pub fn list_aws_default_service_quotas(
        &self,
    ) -> crate::operation::list_aws_default_service_quotas::builders::ListAWSDefaultServiceQuotasFluentBuilder {
        crate::operation::list_aws_default_service_quotas::builders::ListAWSDefaultServiceQuotasFluentBuilder::new(self.handle.clone())
    }
}