aws_sdk_cleanroomsml/client/delete_configured_model_algorithm_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 [`DeleteConfiguredModelAlgorithmAssociation`](crate::operation::delete_configured_model_algorithm_association::builders::DeleteConfiguredModelAlgorithmAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`configured_model_algorithm_association_arn(impl Into<String>)`](crate::operation::delete_configured_model_algorithm_association::builders::DeleteConfiguredModelAlgorithmAssociationFluentBuilder::configured_model_algorithm_association_arn) / [`set_configured_model_algorithm_association_arn(Option<String>)`](crate::operation::delete_configured_model_algorithm_association::builders::DeleteConfiguredModelAlgorithmAssociationFluentBuilder::set_configured_model_algorithm_association_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the configured model algorithm association that you want to delete.</p><br>
7 /// - [`membership_identifier(impl Into<String>)`](crate::operation::delete_configured_model_algorithm_association::builders::DeleteConfiguredModelAlgorithmAssociationFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::delete_configured_model_algorithm_association::builders::DeleteConfiguredModelAlgorithmAssociationFluentBuilder::set_membership_identifier):<br>required: **true**<br><p>The membership ID of the member that is deleting the configured model algorithm association.</p><br>
8 /// - On success, responds with [`DeleteConfiguredModelAlgorithmAssociationOutput`](crate::operation::delete_configured_model_algorithm_association::DeleteConfiguredModelAlgorithmAssociationOutput)
9 /// - On failure, responds with [`SdkError<DeleteConfiguredModelAlgorithmAssociationError>`](crate::operation::delete_configured_model_algorithm_association::DeleteConfiguredModelAlgorithmAssociationError)
10 pub fn delete_configured_model_algorithm_association(
11 &self,
12 ) -> crate::operation::delete_configured_model_algorithm_association::builders::DeleteConfiguredModelAlgorithmAssociationFluentBuilder {
13 crate::operation::delete_configured_model_algorithm_association::builders::DeleteConfiguredModelAlgorithmAssociationFluentBuilder::new(
14 self.handle.clone(),
15 )
16 }
17}