1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetMLModelTrainingJob`](crate::operation::get_ml_model_training_job::builders::GetMLModelTrainingJobFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::get_ml_model_training_job::builders::GetMLModelTrainingJobFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_ml_model_training_job::builders::GetMLModelTrainingJobFluentBuilder::set_id):<br>required: **true**<br><p>The unique identifier of the model-training job to retrieve.</p><br>
    ///   - [`neptune_iam_role_arn(impl Into<String>)`](crate::operation::get_ml_model_training_job::builders::GetMLModelTrainingJobFluentBuilder::neptune_iam_role_arn) / [`set_neptune_iam_role_arn(Option<String>)`](crate::operation::get_ml_model_training_job::builders::GetMLModelTrainingJobFluentBuilder::set_neptune_iam_role_arn):<br>required: **false**<br><p>The ARN of an IAM role that provides Neptune access to SageMaker and Amazon S3 resources. This must be listed in your DB cluster parameter group or an error will occur.</p><br>
    /// - On success, responds with [`GetMlModelTrainingJobOutput`](crate::operation::get_ml_model_training_job::GetMlModelTrainingJobOutput) with field(s):
    ///   - [`status(Option<String>)`](crate::operation::get_ml_model_training_job::GetMlModelTrainingJobOutput::status): <p>The status of the model training job.</p>
    ///   - [`id(Option<String>)`](crate::operation::get_ml_model_training_job::GetMlModelTrainingJobOutput::id): <p>The unique identifier of this model-training job.</p>
    ///   - [`processing_job(Option<MlResourceDefinition>)`](crate::operation::get_ml_model_training_job::GetMlModelTrainingJobOutput::processing_job): <p>The data processing job.</p>
    ///   - [`hpo_job(Option<MlResourceDefinition>)`](crate::operation::get_ml_model_training_job::GetMlModelTrainingJobOutput::hpo_job): <p>The HPO job.</p>
    ///   - [`model_transform_job(Option<MlResourceDefinition>)`](crate::operation::get_ml_model_training_job::GetMlModelTrainingJobOutput::model_transform_job): <p>The model transform job.</p>
    ///   - [`ml_models(Option<Vec::<MlConfigDefinition>>)`](crate::operation::get_ml_model_training_job::GetMlModelTrainingJobOutput::ml_models): <p>A list of the configurations of the ML models being used.</p>
    /// - On failure, responds with [`SdkError<GetMLModelTrainingJobError>`](crate::operation::get_ml_model_training_job::GetMLModelTrainingJobError)
    pub fn get_ml_model_training_job(&self) -> crate::operation::get_ml_model_training_job::builders::GetMLModelTrainingJobFluentBuilder {
        crate::operation::get_ml_model_training_job::builders::GetMLModelTrainingJobFluentBuilder::new(self.handle.clone())
    }
}