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 [`ListPortals`](crate::operation::list_portals::builders::ListPortalsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_portals::builders::ListPortalsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_portals::builders::ListPortalsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_portals::builders::ListPortalsFluentBuilder::set_next_token): <p>The token to be used for the next set of paginated results.</p>
    ///   - [`max_results(i32)`](crate::operation::list_portals::builders::ListPortalsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_portals::builders::ListPortalsFluentBuilder::set_max_results): <p>The maximum number of results to return for each paginated request.</p>  <p>Default: 50</p>
    /// - On success, responds with [`ListPortalsOutput`](crate::operation::list_portals::ListPortalsOutput) with field(s):
    ///   - [`portal_summaries(Option<Vec<PortalSummary>>)`](crate::operation::list_portals::ListPortalsOutput::portal_summaries): <p>A list that summarizes each portal.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_portals::ListPortalsOutput::next_token): <p>The token for the next set of results, or null if there are no additional results.</p>
    /// - On failure, responds with [`SdkError<ListPortalsError>`](crate::operation::list_portals::ListPortalsError)
    pub fn list_portals(&self) -> crate::operation::list_portals::builders::ListPortalsFluentBuilder {
        crate::operation::list_portals::builders::ListPortalsFluentBuilder::new(self.handle.clone())
    }
}