// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListManagedThingAccountAssociations`](crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`managed_thing_id(impl Into<String>)`](crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder::managed_thing_id) / [`set_managed_thing_id(Option<String>)`](crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder::set_managed_thing_id):<br>required: **false**<br><p>The identifier of the managed thing to list account associations for.</p><br>
/// - [`account_association_id(impl Into<String>)`](crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder::account_association_id) / [`set_account_association_id(Option<String>)`](crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder::set_account_association_id):<br>required: **false**<br><p>The identifier of the account association to filter results by. When specified, only associations with this account association ID will be returned.</p><br>
/// - [`max_results(i32)`](crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of account associations to return in a single response.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder::set_next_token):<br>required: **false**<br><p>A token used for pagination of results.</p><br>
/// - On success, responds with [`ListManagedThingAccountAssociationsOutput`](crate::operation::list_managed_thing_account_associations::ListManagedThingAccountAssociationsOutput) with field(s):
/// - [`items(Option<Vec::<ManagedThingAssociation>>)`](crate::operation::list_managed_thing_account_associations::ListManagedThingAccountAssociationsOutput::items): <p>The list of managed thing associations that match the specified criteria, including the managed thing ID and account association ID for each association.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_managed_thing_account_associations::ListManagedThingAccountAssociationsOutput::next_token): <p>A token used for pagination of results when there are more account associations than can be returned in a single response.</p>
/// - On failure, responds with [`SdkError<ListManagedThingAccountAssociationsError>`](crate::operation::list_managed_thing_account_associations::ListManagedThingAccountAssociationsError)
pub fn list_managed_thing_account_associations(
&self,
) -> crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder {
crate::operation::list_managed_thing_account_associations::builders::ListManagedThingAccountAssociationsFluentBuilder::new(
self.handle.clone(),
)
}
}