aws_sdk_cleanrooms/client/
list_id_namespace_associations.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`ListIdNamespaceAssociations`](crate::operation::list_id_namespace_associations::builders::ListIdNamespaceAssociationsFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_id_namespace_associations::builders::ListIdNamespaceAssociationsFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`membership_identifier(impl Into<String>)`](crate::operation::list_id_namespace_associations::builders::ListIdNamespaceAssociationsFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::list_id_namespace_associations::builders::ListIdNamespaceAssociationsFluentBuilder::set_membership_identifier):<br>required: **true**<br><p>The unique identifier of the membership that contains the ID namespace association that you want to view.</p><br>
8    ///   - [`next_token(impl Into<String>)`](crate::operation::list_id_namespace_associations::builders::ListIdNamespaceAssociationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_id_namespace_associations::builders::ListIdNamespaceAssociationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token that's used to fetch the next set of results.</p><br>
9    ///   - [`max_results(i32)`](crate::operation::list_id_namespace_associations::builders::ListIdNamespaceAssociationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_id_namespace_associations::builders::ListIdNamespaceAssociationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum size of the results that is returned per call. Service chooses a default if it has not been set. Service may return a nextToken even if the maximum results has not been met.</p><br>
10    /// - On success, responds with [`ListIdNamespaceAssociationsOutput`](crate::operation::list_id_namespace_associations::ListIdNamespaceAssociationsOutput) with field(s):
11    ///   - [`next_token(Option<String>)`](crate::operation::list_id_namespace_associations::ListIdNamespaceAssociationsOutput::next_token): <p>The token value provided to access the next page of results.</p>
12    ///   - [`id_namespace_association_summaries(Vec::<IdNamespaceAssociationSummary>)`](crate::operation::list_id_namespace_associations::ListIdNamespaceAssociationsOutput::id_namespace_association_summaries): <p>The summary information of the ID namespace associations that you requested.</p>
13    /// - On failure, responds with [`SdkError<ListIdNamespaceAssociationsError>`](crate::operation::list_id_namespace_associations::ListIdNamespaceAssociationsError)
14    pub fn list_id_namespace_associations(
15        &self,
16    ) -> crate::operation::list_id_namespace_associations::builders::ListIdNamespaceAssociationsFluentBuilder {
17        crate::operation::list_id_namespace_associations::builders::ListIdNamespaceAssociationsFluentBuilder::new(self.handle.clone())
18    }
19}