1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListMeetings`](crate::operation::list_meetings::builders::ListMeetingsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_meetings::builders::ListMeetingsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_meetings::builders::ListMeetingsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_meetings::builders::ListMeetingsFluentBuilder::set_next_token): <p>The token to use to retrieve the next page of results.</p>
    ///   - [`max_results(i32)`](crate::operation::list_meetings::builders::ListMeetingsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_meetings::builders::ListMeetingsFluentBuilder::set_max_results): <p>The maximum number of results to return in a single call.</p>
    /// - On success, responds with [`ListMeetingsOutput`](crate::operation::list_meetings::ListMeetingsOutput) with field(s):
    ///   - [`meetings(Option<Vec<Meeting>>)`](crate::operation::list_meetings::ListMeetingsOutput::meetings): <p>The Amazon Chime SDK meeting information.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_meetings::ListMeetingsOutput::next_token): <p>The token to use to retrieve the next page of results.</p>
    /// - On failure, responds with [`SdkError<ListMeetingsError>`](crate::operation::list_meetings::ListMeetingsError)
    pub fn list_meetings(
        &self,
    ) -> crate::operation::list_meetings::builders::ListMeetingsFluentBuilder {
        crate::operation::list_meetings::builders::ListMeetingsFluentBuilder::new(
            self.handle.clone(),
        )
    }
}