1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetApis`](crate::operation::get_apis::builders::GetApisFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_results(impl Into<String>)`](crate::operation::get_apis::builders::GetApisFluentBuilder::max_results) / [`set_max_results(Option<String>)`](crate::operation::get_apis::builders::GetApisFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of elements to be returned for this resource.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::get_apis::builders::GetApisFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_apis::builders::GetApisFluentBuilder::set_next_token):<br>required: **false**<br><p>The next page of elements from this collection. Not valid for the last element of the collection.</p><br>
    /// - On success, responds with [`GetApisOutput`](crate::operation::get_apis::GetApisOutput) with field(s):
    ///   - [`items(Option<Vec::<Api>>)`](crate::operation::get_apis::GetApisOutput::items): <p>The elements from this collection.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::get_apis::GetApisOutput::next_token): <p>The next page of elements from this collection. Not valid for the last element of the collection.</p>
    /// - On failure, responds with [`SdkError<GetApisError>`](crate::operation::get_apis::GetApisError)
    pub fn get_apis(&self) -> crate::operation::get_apis::builders::GetApisFluentBuilder {
        crate::operation::get_apis::builders::GetApisFluentBuilder::new(self.handle.clone())
    }
}