1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListMLModelTrainingJobs`](crate::operation::list_ml_model_training_jobs::builders::ListMLModelTrainingJobsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_items(i32)`](crate::operation::list_ml_model_training_jobs::builders::ListMLModelTrainingJobsFluentBuilder::max_items) / [`set_max_items(Option<i32>)`](crate::operation::list_ml_model_training_jobs::builders::ListMLModelTrainingJobsFluentBuilder::set_max_items):<br>required: **false**<br><p>The maximum number of items to return (from 1 to 1024; the default is 10).</p><br>
    ///   - [`neptune_iam_role_arn(impl Into<String>)`](crate::operation::list_ml_model_training_jobs::builders::ListMLModelTrainingJobsFluentBuilder::neptune_iam_role_arn) / [`set_neptune_iam_role_arn(Option<String>)`](crate::operation::list_ml_model_training_jobs::builders::ListMLModelTrainingJobsFluentBuilder::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 [`ListMlModelTrainingJobsOutput`](crate::operation::list_ml_model_training_jobs::ListMlModelTrainingJobsOutput) with field(s):
    ///   - [`ids(Option<Vec::<String>>)`](crate::operation::list_ml_model_training_jobs::ListMlModelTrainingJobsOutput::ids): <p>A page of the list of model training job IDs.</p>
    /// - On failure, responds with [`SdkError<ListMLModelTrainingJobsError>`](crate::operation::list_ml_model_training_jobs::ListMLModelTrainingJobsError)
    pub fn list_ml_model_training_jobs(&self) -> crate::operation::list_ml_model_training_jobs::builders::ListMLModelTrainingJobsFluentBuilder {
        crate::operation::list_ml_model_training_jobs::builders::ListMLModelTrainingJobsFluentBuilder::new(self.handle.clone())
    }
}