#[non_exhaustive]pub struct GetBatchJobExecutionOutput { /* private fields */ }Implementations§
source§impl GetBatchJobExecutionOutput
impl GetBatchJobExecutionOutput
sourcepub fn execution_id(&self) -> Option<&str>
pub fn execution_id(&self) -> Option<&str>
The unique identifier for this batch job execution.
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&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) -> Option<&BatchJobExecutionStatus>
pub fn status(&self) -> Option<&BatchJobExecutionStatus>
The status of the batch job execution.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&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>
sourcepub fn batch_job_identifier(&self) -> Option<&BatchJobIdentifier>
pub fn batch_job_identifier(&self) -> Option<&BatchJobIdentifier>
Identifies a specific 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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GetBatchJobExecutionOutput
impl Debug for GetBatchJobExecutionOutput
source§impl PartialEq<GetBatchJobExecutionOutput> for GetBatchJobExecutionOutput
impl PartialEq<GetBatchJobExecutionOutput> for GetBatchJobExecutionOutput
source§fn eq(&self, other: &GetBatchJobExecutionOutput) -> bool
fn eq(&self, other: &GetBatchJobExecutionOutput) -> bool
This method tests for
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>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetBatchJobExecutionOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetBatchJobExecutionOutput
impl Send for GetBatchJobExecutionOutput
impl Sync for GetBatchJobExecutionOutput
impl Unpin for GetBatchJobExecutionOutput
impl UnwindSafe for GetBatchJobExecutionOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more