aws_sdk_cleanroomsml/client/
delete_ml_configuration.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 [`DeleteMLConfiguration`](crate::operation::delete_ml_configuration::builders::DeleteMLConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`membership_identifier(impl Into<String>)`](crate::operation::delete_ml_configuration::builders::DeleteMLConfigurationFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::delete_ml_configuration::builders::DeleteMLConfigurationFluentBuilder::set_membership_identifier):<br>required: **true**<br><p>The membership ID of the of the member that is deleting the ML modeling configuration.</p><br>
7    /// - On success, responds with [`DeleteMlConfigurationOutput`](crate::operation::delete_ml_configuration::DeleteMlConfigurationOutput)
8    /// - On failure, responds with [`SdkError<DeleteMLConfigurationError>`](crate::operation::delete_ml_configuration::DeleteMLConfigurationError)
9    pub fn delete_ml_configuration(&self) -> crate::operation::delete_ml_configuration::builders::DeleteMLConfigurationFluentBuilder {
10        crate::operation::delete_ml_configuration::builders::DeleteMLConfigurationFluentBuilder::new(self.handle.clone())
11    }
12}