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 [`StartExportLabelsTaskRun`](crate::operation::start_export_labels_task_run::builders::StartExportLabelsTaskRunFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`transform_id(impl Into<String>)`](crate::operation::start_export_labels_task_run::builders::StartExportLabelsTaskRunFluentBuilder::transform_id) / [`set_transform_id(Option<String>)`](crate::operation::start_export_labels_task_run::builders::StartExportLabelsTaskRunFluentBuilder::set_transform_id):<br>required: **true**<br><p>The unique identifier of the machine learning transform.</p><br>
    ///   - [`output_s3_path(impl Into<String>)`](crate::operation::start_export_labels_task_run::builders::StartExportLabelsTaskRunFluentBuilder::output_s3_path) / [`set_output_s3_path(Option<String>)`](crate::operation::start_export_labels_task_run::builders::StartExportLabelsTaskRunFluentBuilder::set_output_s3_path):<br>required: **true**<br><p>The Amazon S3 path where you export the labels.</p><br>
    /// - On success, responds with [`StartExportLabelsTaskRunOutput`](crate::operation::start_export_labels_task_run::StartExportLabelsTaskRunOutput) with field(s):
    ///   - [`task_run_id(Option<String>)`](crate::operation::start_export_labels_task_run::StartExportLabelsTaskRunOutput::task_run_id): <p>The unique identifier for the task run.</p>
    /// - On failure, responds with [`SdkError<StartExportLabelsTaskRunError>`](crate::operation::start_export_labels_task_run::StartExportLabelsTaskRunError)
    pub fn start_export_labels_task_run(&self) -> crate::operation::start_export_labels_task_run::builders::StartExportLabelsTaskRunFluentBuilder {
        crate::operation::start_export_labels_task_run::builders::StartExportLabelsTaskRunFluentBuilder::new(self.handle.clone())
    }
}