aws_sdk_cleanroomsml/client/
delete_configured_model_algorithm.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 [`DeleteConfiguredModelAlgorithm`](crate::operation::delete_configured_model_algorithm::builders::DeleteConfiguredModelAlgorithmFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`configured_model_algorithm_arn(impl Into<String>)`](crate::operation::delete_configured_model_algorithm::builders::DeleteConfiguredModelAlgorithmFluentBuilder::configured_model_algorithm_arn) / [`set_configured_model_algorithm_arn(Option<String>)`](crate::operation::delete_configured_model_algorithm::builders::DeleteConfiguredModelAlgorithmFluentBuilder::set_configured_model_algorithm_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the configured model algorithm that you want to delete.</p><br>
7    /// - On success, responds with [`DeleteConfiguredModelAlgorithmOutput`](crate::operation::delete_configured_model_algorithm::DeleteConfiguredModelAlgorithmOutput)
8    /// - On failure, responds with [`SdkError<DeleteConfiguredModelAlgorithmError>`](crate::operation::delete_configured_model_algorithm::DeleteConfiguredModelAlgorithmError)
9    pub fn delete_configured_model_algorithm(
10        &self,
11    ) -> crate::operation::delete_configured_model_algorithm::builders::DeleteConfiguredModelAlgorithmFluentBuilder {
12        crate::operation::delete_configured_model_algorithm::builders::DeleteConfiguredModelAlgorithmFluentBuilder::new(self.handle.clone())
13    }
14}