#[non_exhaustive]pub struct GetBatchJobExecutionOutput {
pub execution_id: String,
pub application_id: String,
pub job_id: Option<String>,
pub job_name: Option<String>,
pub job_user: Option<String>,
pub job_type: Option<BatchJobType>,
pub status: BatchJobExecutionStatus,
pub start_time: DateTime,
pub end_time: Option<DateTime>,
pub status_reason: Option<String>,
pub return_code: Option<String>,
pub batch_job_identifier: Option<BatchJobIdentifier>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.execution_id: String
The unique identifier for this batch job execution.
application_id: String
The identifier of the application.
job_id: Option<String>
The unique identifier for this batch job.
job_name: Option<String>
The name of this batch job.
job_user: Option<String>
The user for the job.
job_type: Option<BatchJobType>
The type of job.
status: BatchJobExecutionStatus
The status of the batch job execution.
start_time: DateTime
The timestamp when the batch job execution started.
end_time: Option<DateTime>
The timestamp when the batch job execution ended.
status_reason: Option<String>
The reason for the reported status.
return_code: Option<String>
The batch job return code from either the Blu Age or Micro Focus runtime engines. For more information, see Batch return codes in the IBM WebSphere Application Server documentation.
batch_job_identifier: Option<BatchJobIdentifier>
The unique identifier of this batch job.
Implementations§
source§impl GetBatchJobExecutionOutput
impl GetBatchJobExecutionOutput
sourcepub fn execution_id(&self) -> &str
pub fn execution_id(&self) -> &str
The unique identifier for this batch job execution.
sourcepub fn application_id(&self) -> &str
pub fn application_id(&self) -> &str
The identifier of the application.
sourcepub fn job_type(&self) -> Option<&BatchJobType>
pub fn job_type(&self) -> Option<&BatchJobType>
The type of job.
sourcepub fn status(&self) -> &BatchJobExecutionStatus
pub fn status(&self) -> &BatchJobExecutionStatus
The status of the batch job execution.
sourcepub fn start_time(&self) -> &DateTime
pub fn start_time(&self) -> &DateTime
The timestamp when the batch job execution started.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The reason for the reported status.
sourcepub fn return_code(&self) -> Option<&str>
pub fn return_code(&self) -> Option<&str>
The batch job return code from either the Blu Age or Micro Focus runtime engines. For more information, see Batch return codes in the IBM WebSphere Application Server documentation.
sourcepub fn batch_job_identifier(&self) -> Option<&BatchJobIdentifier>
pub fn batch_job_identifier(&self) -> Option<&BatchJobIdentifier>
The unique identifier of this batch job.
source§impl GetBatchJobExecutionOutput
impl GetBatchJobExecutionOutput
sourcepub fn builder() -> GetBatchJobExecutionOutputBuilder
pub fn builder() -> GetBatchJobExecutionOutputBuilder
Creates a new builder-style object to manufacture GetBatchJobExecutionOutput
.
Trait Implementations§
source§impl Clone for GetBatchJobExecutionOutput
impl Clone for GetBatchJobExecutionOutput
source§fn clone(&self) -> GetBatchJobExecutionOutput
fn clone(&self) -> GetBatchJobExecutionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetBatchJobExecutionOutput
impl Debug for GetBatchJobExecutionOutput
source§impl PartialEq for GetBatchJobExecutionOutput
impl PartialEq for GetBatchJobExecutionOutput
source§fn eq(&self, other: &GetBatchJobExecutionOutput) -> bool
fn eq(&self, other: &GetBatchJobExecutionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetBatchJobExecutionOutput
impl RequestId for GetBatchJobExecutionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.