aws_sdk_databrew/client/
start_job_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 [`StartJobRun`](crate::operation::start_job_run::builders::StartJobRunFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`name(impl Into<String>)`](crate::operation::start_job_run::builders::StartJobRunFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::start_job_run::builders::StartJobRunFluentBuilder::set_name):<br>required: **true**<br><p>The name of the job to be run.</p><br>
7    /// - On success, responds with [`StartJobRunOutput`](crate::operation::start_job_run::StartJobRunOutput) with field(s):
8    ///   - [`run_id(String)`](crate::operation::start_job_run::StartJobRunOutput::run_id): <p>A system-generated identifier for this particular job run.</p>
9    /// - On failure, responds with [`SdkError<StartJobRunError>`](crate::operation::start_job_run::StartJobRunError)
10    pub fn start_job_run(&self) -> crate::operation::start_job_run::builders::StartJobRunFluentBuilder {
11        crate::operation::start_job_run::builders::StartJobRunFluentBuilder::new(self.handle.clone())
12    }
13}