aws_sdk_dataexchange/client/start_job.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`StartJob`](crate::operation::start_job::builders::StartJobFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`job_id(impl Into<String>)`](crate::operation::start_job::builders::StartJobFluentBuilder::job_id) / [`set_job_id(Option<String>)`](crate::operation::start_job::builders::StartJobFluentBuilder::set_job_id):<br>required: **true**<br><p>The unique identifier for a job.</p><br>
/// - On success, responds with [`StartJobOutput`](crate::operation::start_job::StartJobOutput)
/// - On failure, responds with [`SdkError<StartJobError>`](crate::operation::start_job::StartJobError)
pub fn start_job(&self) -> crate::operation::start_job::builders::StartJobFluentBuilder {
crate::operation::start_job::builders::StartJobFluentBuilder::new(self.handle.clone())
}
}