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 [`ListAssociatedFleets`](crate::operation::list_associated_fleets::builders::ListAssociatedFleetsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`stack_name(impl Into<String>)`](crate::operation::list_associated_fleets::builders::ListAssociatedFleetsFluentBuilder::stack_name) / [`set_stack_name(Option<String>)`](crate::operation::list_associated_fleets::builders::ListAssociatedFleetsFluentBuilder::set_stack_name):<br>required: **true**<br><p>The name of the stack.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_associated_fleets::builders::ListAssociatedFleetsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_associated_fleets::builders::ListAssociatedFleetsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p><br>
    /// - On success, responds with [`ListAssociatedFleetsOutput`](crate::operation::list_associated_fleets::ListAssociatedFleetsOutput) with field(s):
    ///   - [`names(Option<Vec::<String>>)`](crate::operation::list_associated_fleets::ListAssociatedFleetsOutput::names): <p>The name of the fleet.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_associated_fleets::ListAssociatedFleetsOutput::next_token): <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
    /// - On failure, responds with [`SdkError<ListAssociatedFleetsError>`](crate::operation::list_associated_fleets::ListAssociatedFleetsError)
    pub fn list_associated_fleets(&self) -> crate::operation::list_associated_fleets::builders::ListAssociatedFleetsFluentBuilder {
        crate::operation::list_associated_fleets::builders::ListAssociatedFleetsFluentBuilder::new(self.handle.clone())
    }
}