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
impl StructuralPartialEq for JobExecutionSummary
Auto Trait Implementations§
impl Freeze for JobExecutionSummary
impl RefUnwindSafe for JobExecutionSummary
impl Send for JobExecutionSummary
impl Sync for JobExecutionSummary
impl Unpin for JobExecutionSummary
impl UnwindSafe for JobExecutionSummary
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more