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 [`ListStudios`](crate::operation::list_studios::builders::ListStudiosFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_studios::builders::ListStudiosFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_studios::builders::ListStudiosFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_studios::builders::ListStudiosFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results, or null if there are no more results.</p><br>
    /// - On success, responds with [`ListStudiosOutput`](crate::operation::list_studios::ListStudiosOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::list_studios::ListStudiosOutput::next_token): <p>The token for the next set of results, or null if there are no more results.</p>
    ///   - [`studios(Vec::<Studio>)`](crate::operation::list_studios::ListStudiosOutput::studios): <p>A collection of studios.</p>
    /// - On failure, responds with [`SdkError<ListStudiosError>`](crate::operation::list_studios::ListStudiosError)
    pub fn list_studios(&self) -> crate::operation::list_studios::builders::ListStudiosFluentBuilder {
        crate::operation::list_studios::builders::ListStudiosFluentBuilder::new(self.handle.clone())
    }
}