aws_sdk_databrew/client/
start_job_run.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartJobRun`](crate::operation::start_job_run::builders::StartJobRunFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    /// - On success, responds with [`StartJobRunOutput`](crate::operation::start_job_run::StartJobRunOutput) with field(s):
    ///   - [`run_id(String)`](crate::operation::start_job_run::StartJobRunOutput::run_id): <p>A system-generated identifier for this particular job run.</p>
    /// - On failure, responds with [`SdkError<StartJobRunError>`](crate::operation::start_job_run::StartJobRunError)
    pub fn start_job_run(&self) -> crate::operation::start_job_run::builders::StartJobRunFluentBuilder {
        crate::operation::start_job_run::builders::StartJobRunFluentBuilder::new(self.handle.clone())
    }
}