Struct aws_sdk_iot::model::JobExecutionSummary
source · #[non_exhaustive]pub struct JobExecutionSummary { /* private fields */ }
Expand description
The job execution summary.
Implementations§
source§impl JobExecutionSummary
impl JobExecutionSummary
sourcepub fn status(&self) -> Option<&JobExecutionStatus>
pub fn status(&self) -> Option<&JobExecutionStatus>
The status of the job execution.
sourcepub fn queued_at(&self) -> Option<&DateTime>
pub fn queued_at(&self) -> Option<&DateTime>
The time, in seconds since the epoch, when the job execution was queued.
sourcepub fn started_at(&self) -> Option<&DateTime>
pub fn started_at(&self) -> Option<&DateTime>
The time, in seconds since the epoch, when the job execution started.
sourcepub fn last_updated_at(&self) -> Option<&DateTime>
pub fn last_updated_at(&self) -> Option<&DateTime>
The time, in seconds since the epoch, when the job execution was last updated.
sourcepub fn execution_number(&self) -> Option<i64>
pub fn execution_number(&self) -> Option<i64>
A string (consisting of the digits "0" through "9") which identifies this particular job execution on this particular device. It can be used later in commands which return or update job execution information.
sourcepub fn retry_attempt(&self) -> Option<i32>
pub fn retry_attempt(&self) -> Option<i32>
The number that indicates how many retry attempts have been completed for this job on this device.
source§impl JobExecutionSummary
impl JobExecutionSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture JobExecutionSummary
.
Trait Implementations§
source§impl Clone for JobExecutionSummary
impl Clone for JobExecutionSummary
source§fn clone(&self) -> JobExecutionSummary
fn clone(&self) -> JobExecutionSummary
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 JobExecutionSummary
impl Debug for JobExecutionSummary
source§impl PartialEq<JobExecutionSummary> for JobExecutionSummary
impl PartialEq<JobExecutionSummary> for JobExecutionSummary
source§fn eq(&self, other: &JobExecutionSummary) -> bool
fn eq(&self, other: &JobExecutionSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.