1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartImportLabelsTaskRun`](crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`StartImportLabelsTaskRunOutput`](crate::operation::start_import_labels_task_run::StartImportLabelsTaskRunOutput) with field(s):
    ///   - [`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>
    /// - On failure, responds with [`SdkError<StartImportLabelsTaskRunError>`](crate::operation::start_import_labels_task_run::StartImportLabelsTaskRunError)
    pub fn start_import_labels_task_run(&self) -> crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder {
        crate::operation::start_import_labels_task_run::builders::StartImportLabelsTaskRunFluentBuilder::new(self.handle.clone())
    }
}