// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeTrustStoreAssociations`](crate::operation::describe_trust_store_associations::builders::DescribeTrustStoreAssociationsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_trust_store_associations::builders::DescribeTrustStoreAssociationsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`trust_store_arn(impl Into<String>)`](crate::operation::describe_trust_store_associations::builders::DescribeTrustStoreAssociationsFluentBuilder::trust_store_arn) / [`set_trust_store_arn(Option<String>)`](crate::operation::describe_trust_store_associations::builders::DescribeTrustStoreAssociationsFluentBuilder::set_trust_store_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the trust store.</p><br>
/// - [`marker(impl Into<String>)`](crate::operation::describe_trust_store_associations::builders::DescribeTrustStoreAssociationsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_trust_store_associations::builders::DescribeTrustStoreAssociationsFluentBuilder::set_marker):<br>required: **false**<br><p>The marker for the next set of results. (You received this marker from a previous call.)</p><br>
/// - [`page_size(i32)`](crate::operation::describe_trust_store_associations::builders::DescribeTrustStoreAssociationsFluentBuilder::page_size) / [`set_page_size(Option<i32>)`](crate::operation::describe_trust_store_associations::builders::DescribeTrustStoreAssociationsFluentBuilder::set_page_size):<br>required: **false**<br><p>The maximum number of results to return with this call.</p><br>
/// - On success, responds with [`DescribeTrustStoreAssociationsOutput`](crate::operation::describe_trust_store_associations::DescribeTrustStoreAssociationsOutput) with field(s):
/// - [`trust_store_associations(Option<Vec::<TrustStoreAssociation>>)`](crate::operation::describe_trust_store_associations::DescribeTrustStoreAssociationsOutput::trust_store_associations): <p>Information about the resources the trust store is associated to.</p>
/// - [`next_marker(Option<String>)`](crate::operation::describe_trust_store_associations::DescribeTrustStoreAssociationsOutput::next_marker): <p>If there are additional results, this is the marker for the next set of results. Otherwise, this is null.</p>
/// - On failure, responds with [`SdkError<DescribeTrustStoreAssociationsError>`](crate::operation::describe_trust_store_associations::DescribeTrustStoreAssociationsError)
pub fn describe_trust_store_associations(
&self,
) -> crate::operation::describe_trust_store_associations::builders::DescribeTrustStoreAssociationsFluentBuilder {
crate::operation::describe_trust_store_associations::builders::DescribeTrustStoreAssociationsFluentBuilder::new(self.handle.clone())
}
}