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