aws_sdk_cleanroomsml/client/
get_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 [`GetMLConfiguration`](crate::operation::get_ml_configuration::builders::GetMLConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`membership_identifier(impl Into<String>)`](crate::operation::get_ml_configuration::builders::GetMLConfigurationFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::get_ml_configuration::builders::GetMLConfigurationFluentBuilder::set_membership_identifier):<br>required: **true**<br><p>The membership ID of the member that owns the ML configuration you want to return information about.</p><br>
7    /// - On success, responds with [`GetMlConfigurationOutput`](crate::operation::get_ml_configuration::GetMlConfigurationOutput) with field(s):
8    ///   - [`membership_identifier(String)`](crate::operation::get_ml_configuration::GetMlConfigurationOutput::membership_identifier): <p>The membership ID of the member that owns the ML configuration you requested.</p>
9    ///   - [`default_output_location(Option<MlOutputConfiguration>)`](crate::operation::get_ml_configuration::GetMlConfigurationOutput::default_output_location): <p>The Amazon S3 location where ML model output is stored.</p>
10    ///   - [`create_time(DateTime)`](crate::operation::get_ml_configuration::GetMlConfigurationOutput::create_time): <p>The time at which the ML configuration was created.</p>
11    ///   - [`update_time(DateTime)`](crate::operation::get_ml_configuration::GetMlConfigurationOutput::update_time): <p>The most recent time at which the ML configuration was updated.</p>
12    /// - On failure, responds with [`SdkError<GetMLConfigurationError>`](crate::operation::get_ml_configuration::GetMLConfigurationError)
13    pub fn get_ml_configuration(&self) -> crate::operation::get_ml_configuration::builders::GetMLConfigurationFluentBuilder {
14        crate::operation::get_ml_configuration::builders::GetMLConfigurationFluentBuilder::new(self.handle.clone())
15    }
16}