aws_sdk_glue/client/start_export_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 [`StartExportLabelsTaskRun`](crate::operation::start_export_labels_task_run::builders::StartExportLabelsTaskRunFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`StartExportLabelsTaskRunOutput`](crate::operation::start_export_labels_task_run::StartExportLabelsTaskRunOutput) with field(s):
9 /// - [`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>
10 /// - On failure, responds with [`SdkError<StartExportLabelsTaskRunError>`](crate::operation::start_export_labels_task_run::StartExportLabelsTaskRunError)
11 pub fn start_export_labels_task_run(&self) -> crate::operation::start_export_labels_task_run::builders::StartExportLabelsTaskRunFluentBuilder {
12 crate::operation::start_export_labels_task_run::builders::StartExportLabelsTaskRunFluentBuilder::new(self.handle.clone())
13 }
14}