1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetBatchJobExecution`](crate::operation::get_batch_job_execution::builders::GetBatchJobExecutionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_id(impl Into<String>)`](crate::operation::get_batch_job_execution::builders::GetBatchJobExecutionFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::get_batch_job_execution::builders::GetBatchJobExecutionFluentBuilder::set_application_id):<br>required: **true**<br><p>The identifier of the application.</p><br>
    ///   - [`execution_id(impl Into<String>)`](crate::operation::get_batch_job_execution::builders::GetBatchJobExecutionFluentBuilder::execution_id) / [`set_execution_id(Option<String>)`](crate::operation::get_batch_job_execution::builders::GetBatchJobExecutionFluentBuilder::set_execution_id):<br>required: **true**<br><p>The unique identifier of the batch job execution.</p><br>
    /// - On success, responds with [`GetBatchJobExecutionOutput`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput) with field(s):
    ///   - [`execution_id(String)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::execution_id): <p>The unique identifier for this batch job execution.</p>
    ///   - [`application_id(String)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::application_id): <p>The identifier of the application.</p>
    ///   - [`job_id(Option<String>)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::job_id): <p>The unique identifier for this batch job.</p>
    ///   - [`job_name(Option<String>)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::job_name): <p>The name of this batch job.</p>
    ///   - [`job_user(Option<String>)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::job_user): <p>The user for the job.</p>
    ///   - [`job_type(Option<BatchJobType>)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::job_type): <p>The type of job.</p>
    ///   - [`status(BatchJobExecutionStatus)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::status): <p>The status of the batch job execution.</p>
    ///   - [`start_time(DateTime)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::start_time): <p>The timestamp when the batch job execution started.</p>
    ///   - [`end_time(Option<DateTime>)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::end_time): <p>The timestamp when the batch job execution ended.</p>
    ///   - [`status_reason(Option<String>)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::status_reason): <p>The reason for the reported status.</p>
    ///   - [`return_code(Option<String>)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::return_code): <p>The batch job return code from either the Blu Age or Micro Focus runtime engines. For more information, see <a href="https://www.ibm.com/docs/en/was/8.5.5?topic=model-batch-return-codes">Batch return codes</a> in the <i>IBM WebSphere Application Server</i> documentation.</p>
    ///   - [`batch_job_identifier(Option<BatchJobIdentifier>)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::batch_job_identifier): <p>The unique identifier of this batch job.</p>
    ///   - [`job_step_restart_marker(Option<JobStepRestartMarker>)`](crate::operation::get_batch_job_execution::GetBatchJobExecutionOutput::job_step_restart_marker): <p>The restart steps information for the most recent restart operation.</p>
    /// - On failure, responds with [`SdkError<GetBatchJobExecutionError>`](crate::operation::get_batch_job_execution::GetBatchJobExecutionError)
    pub fn get_batch_job_execution(&self) -> crate::operation::get_batch_job_execution::builders::GetBatchJobExecutionFluentBuilder {
        crate::operation::get_batch_job_execution::builders::GetBatchJobExecutionFluentBuilder::new(self.handle.clone())
    }
}