aws_sdk_glue/client/start_import_labels_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 [`StartImportLabelsTaskRun`](crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`transform_id(impl Into<String>)`](crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder::transform_id) / [`set_transform_id(Option<String>)`](crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder::set_transform_id):<br>required: **true**<br><p>The unique identifier of the machine learning transform.</p><br>
7 /// - [`input_s3_path(impl Into<String>)`](crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder::input_s3_path) / [`set_input_s3_path(Option<String>)`](crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder::set_input_s3_path):<br>required: **true**<br><p>The Amazon Simple Storage Service (Amazon S3) path from where you import the labels.</p><br>
8 /// - [`replace_all_labels(bool)`](crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder::replace_all_labels) / [`set_replace_all_labels(Option<bool>)`](crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder::set_replace_all_labels):<br>required: **false**<br><p>Indicates whether to overwrite your existing labels.</p><br>
9 /// - On success, responds with [`StartImportLabelsTaskRunOutput`](crate::operation::start_import_labels_task_run::StartImportLabelsTaskRunOutput) with field(s):
10 /// - [`task_run_id(Option<String>)`](crate::operation::start_import_labels_task_run::StartImportLabelsTaskRunOutput::task_run_id): <p>The unique identifier for the task run.</p>
11 /// - On failure, responds with [`SdkError<StartImportLabelsTaskRunError>`](crate::operation::start_import_labels_task_run::StartImportLabelsTaskRunError)
12 pub fn start_import_labels_task_run(&self) -> crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder {
13 crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder::new(self.handle.clone())
14 }
15}