aws_sdk_cleanrooms/client/get_id_namespace_association.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 [`GetIdNamespaceAssociation`](crate::operation::get_id_namespace_association::builders::GetIdNamespaceAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`id_namespace_association_identifier(impl Into<String>)`](crate::operation::get_id_namespace_association::builders::GetIdNamespaceAssociationFluentBuilder::id_namespace_association_identifier) / [`set_id_namespace_association_identifier(Option<String>)`](crate::operation::get_id_namespace_association::builders::GetIdNamespaceAssociationFluentBuilder::set_id_namespace_association_identifier):<br>required: **true**<br><p>The unique identifier of the ID namespace association that you want to retrieve.</p><br>
7 /// - [`membership_identifier(impl Into<String>)`](crate::operation::get_id_namespace_association::builders::GetIdNamespaceAssociationFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::get_id_namespace_association::builders::GetIdNamespaceAssociationFluentBuilder::set_membership_identifier):<br>required: **true**<br><p>The unique identifier of the membership that contains the ID namespace association that you want to retrieve.</p><br>
8 /// - On success, responds with [`GetIdNamespaceAssociationOutput`](crate::operation::get_id_namespace_association::GetIdNamespaceAssociationOutput) with field(s):
9 /// - [`id_namespace_association(Option<IdNamespaceAssociation>)`](crate::operation::get_id_namespace_association::GetIdNamespaceAssociationOutput::id_namespace_association): <p>The ID namespace association that you requested.</p>
10 /// - On failure, responds with [`SdkError<GetIdNamespaceAssociationError>`](crate::operation::get_id_namespace_association::GetIdNamespaceAssociationError)
11 pub fn get_id_namespace_association(&self) -> crate::operation::get_id_namespace_association::builders::GetIdNamespaceAssociationFluentBuilder {
12 crate::operation::get_id_namespace_association::builders::GetIdNamespaceAssociationFluentBuilder::new(self.handle.clone())
13 }
14}