// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`StartTransformerJob`](crate::operation::start_transformer_job::builders::StartTransformerJobFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`input_file(S3Location)`](crate::operation::start_transformer_job::builders::StartTransformerJobFluentBuilder::input_file) / [`set_input_file(Option<S3Location>)`](crate::operation::start_transformer_job::builders::StartTransformerJobFluentBuilder::set_input_file):<br>required: **true**<br><p>Specifies the location of the input file for the transformation. The location consists of an Amazon S3 bucket and prefix.</p><br>
/// - [`output_location(S3Location)`](crate::operation::start_transformer_job::builders::StartTransformerJobFluentBuilder::output_location) / [`set_output_location(Option<S3Location>)`](crate::operation::start_transformer_job::builders::StartTransformerJobFluentBuilder::set_output_location):<br>required: **true**<br><p>Specifies the location of the output file for the transformation. The location consists of an Amazon S3 bucket and prefix.</p><br>
/// - [`transformer_id(impl Into<String>)`](crate::operation::start_transformer_job::builders::StartTransformerJobFluentBuilder::transformer_id) / [`set_transformer_id(Option<String>)`](crate::operation::start_transformer_job::builders::StartTransformerJobFluentBuilder::set_transformer_id):<br>required: **true**<br><p>Specifies the system-assigned unique identifier for the transformer.</p><br>
/// - [`client_token(impl Into<String>)`](crate::operation::start_transformer_job::builders::StartTransformerJobFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::start_transformer_job::builders::StartTransformerJobFluentBuilder::set_client_token):<br>required: **false**<br><p>Reserved for future use.</p><br>
/// - On success, responds with [`StartTransformerJobOutput`](crate::operation::start_transformer_job::StartTransformerJobOutput) with field(s):
/// - [`transformer_job_id(String)`](crate::operation::start_transformer_job::StartTransformerJobOutput::transformer_job_id): <p>Returns the unique, system-generated identifier for a transformer run.</p>
/// - On failure, responds with [`SdkError<StartTransformerJobError>`](crate::operation::start_transformer_job::StartTransformerJobError)
pub fn start_transformer_job(&self) -> crate::operation::start_transformer_job::builders::StartTransformerJobFluentBuilder {
crate::operation::start_transformer_job::builders::StartTransformerJobFluentBuilder::new(self.handle.clone())
}
}