aws_sdk_glue/client/
start_ml_labeling_set_generation_task_run.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 [`StartMLLabelingSetGenerationTaskRun`](crate::operation::start_ml_labeling_set_generation_task_run::builders::StartMLLabelingSetGenerationTaskRunFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`transform_id(impl Into<String>)`](crate::operation::start_ml_labeling_set_generation_task_run::builders::StartMLLabelingSetGenerationTaskRunFluentBuilder::transform_id) / [`set_transform_id(Option<String>)`](crate::operation::start_ml_labeling_set_generation_task_run::builders::StartMLLabelingSetGenerationTaskRunFluentBuilder::set_transform_id):<br>required: **true**<br><p>The unique identifier of the machine learning transform.</p><br>
7    ///   - [`output_s3_path(impl Into<String>)`](crate::operation::start_ml_labeling_set_generation_task_run::builders::StartMLLabelingSetGenerationTaskRunFluentBuilder::output_s3_path) / [`set_output_s3_path(Option<String>)`](crate::operation::start_ml_labeling_set_generation_task_run::builders::StartMLLabelingSetGenerationTaskRunFluentBuilder::set_output_s3_path):<br>required: **true**<br><p>The Amazon Simple Storage Service (Amazon S3) path where you generate the labeling set.</p><br>
8    /// - On success, responds with [`StartMlLabelingSetGenerationTaskRunOutput`](crate::operation::start_ml_labeling_set_generation_task_run::StartMlLabelingSetGenerationTaskRunOutput) with field(s):
9    ///   - [`task_run_id(Option<String>)`](crate::operation::start_ml_labeling_set_generation_task_run::StartMlLabelingSetGenerationTaskRunOutput::task_run_id): <p>The unique run identifier that is associated with this task run.</p>
10    /// - On failure, responds with [`SdkError<StartMLLabelingSetGenerationTaskRunError>`](crate::operation::start_ml_labeling_set_generation_task_run::StartMLLabelingSetGenerationTaskRunError)
11    pub fn start_ml_labeling_set_generation_task_run(
12        &self,
13    ) -> crate::operation::start_ml_labeling_set_generation_task_run::builders::StartMLLabelingSetGenerationTaskRunFluentBuilder {
14        crate::operation::start_ml_labeling_set_generation_task_run::builders::StartMLLabelingSetGenerationTaskRunFluentBuilder::new(
15            self.handle.clone(),
16        )
17    }
18}