aws-sdk-outposts 1.114.0

AWS SDK for AWS Outposts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListQuotes`](crate::operation::list_quotes::builders::ListQuotesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_quotes::builders::ListQuotesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_quotes::builders::ListQuotesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_quotes::builders::ListQuotesFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_quotes::builders::ListQuotesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_quotes::builders::ListQuotesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum page size.</p><br>
    /// - On success, responds with [`ListQuotesOutput`](crate::operation::list_quotes::ListQuotesOutput) with field(s):
    ///   - [`quotes(Option<Vec::<QuoteSummary>>)`](crate::operation::list_quotes::ListQuotesOutput::quotes): <p>Information about the quotes.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_quotes::ListQuotesOutput::next_token): <p>The pagination token.</p>
    /// - On failure, responds with [`SdkError<ListQuotesError>`](crate::operation::list_quotes::ListQuotesError)
    pub fn list_quotes(&self) -> crate::operation::list_quotes::builders::ListQuotesFluentBuilder {
        crate::operation::list_quotes::builders::ListQuotesFluentBuilder::new(self.handle.clone())
    }
}