Struct aws_sdk_iot::types::JobExecutionSummary
source · #[non_exhaustive]pub struct JobExecutionSummary {
pub status: Option<JobExecutionStatus>,
pub queued_at: Option<DateTime>,
pub started_at: Option<DateTime>,
pub last_updated_at: Option<DateTime>,
pub execution_number: Option<i64>,
pub retry_attempt: Option<i32>,
}
Expand description
The job execution summary.
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.status: Option<JobExecutionStatus>
The status of the job execution.
queued_at: Option<DateTime>
The time, in seconds since the epoch, when the job execution was queued.
started_at: Option<DateTime>
The time, in seconds since the epoch, when the job execution started.
last_updated_at: Option<DateTime>
The time, in seconds since the epoch, when the job execution was last updated.
execution_number: 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.
retry_attempt: Option<i32>
The number that indicates how many retry attempts have been completed for this job on this device.
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() -> JobExecutionSummaryBuilder
pub fn builder() -> JobExecutionSummaryBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for JobExecutionSummary
impl Debug for JobExecutionSummary
source§impl PartialEq for JobExecutionSummary
impl PartialEq for JobExecutionSummary
source§fn eq(&self, other: &JobExecutionSummary) -> bool
fn eq(&self, other: &JobExecutionSummary) -> bool
self
and other
values to be equal, and is used
by ==
.