Struct aws_sdk_iot::types::builders::JobExecutionSummaryBuilder
source · #[non_exhaustive]pub struct JobExecutionSummaryBuilder { /* private fields */ }
Expand description
A builder for JobExecutionSummary
.
Implementations§
source§impl JobExecutionSummaryBuilder
impl JobExecutionSummaryBuilder
sourcepub fn status(self, input: JobExecutionStatus) -> Self
pub fn status(self, input: JobExecutionStatus) -> Self
The status of the job execution.
sourcepub fn set_status(self, input: Option<JobExecutionStatus>) -> Self
pub fn set_status(self, input: Option<JobExecutionStatus>) -> Self
The status of the job execution.
sourcepub fn get_status(&self) -> &Option<JobExecutionStatus>
pub fn get_status(&self) -> &Option<JobExecutionStatus>
The status of the job execution.
sourcepub fn queued_at(self, input: DateTime) -> Self
pub fn queued_at(self, input: DateTime) -> Self
The time, in seconds since the epoch, when the job execution was queued.
sourcepub fn set_queued_at(self, input: Option<DateTime>) -> Self
pub fn set_queued_at(self, input: Option<DateTime>) -> Self
The time, in seconds since the epoch, when the job execution was queued.
sourcepub fn get_queued_at(&self) -> &Option<DateTime>
pub fn get_queued_at(&self) -> &Option<DateTime>
The time, in seconds since the epoch, when the job execution was queued.
sourcepub fn started_at(self, input: DateTime) -> Self
pub fn started_at(self, input: DateTime) -> Self
The time, in seconds since the epoch, when the job execution started.
sourcepub fn set_started_at(self, input: Option<DateTime>) -> Self
pub fn set_started_at(self, input: Option<DateTime>) -> Self
The time, in seconds since the epoch, when the job execution started.
sourcepub fn get_started_at(&self) -> &Option<DateTime>
pub fn get_started_at(&self) -> &Option<DateTime>
The time, in seconds since the epoch, when the job execution started.
sourcepub fn last_updated_at(self, input: DateTime) -> Self
pub fn last_updated_at(self, input: DateTime) -> Self
The time, in seconds since the epoch, when the job execution was last updated.
sourcepub fn set_last_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_at(self, input: Option<DateTime>) -> Self
The time, in seconds since the epoch, when the job execution was last updated.
sourcepub fn get_last_updated_at(&self) -> &Option<DateTime>
pub fn get_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, input: i64) -> Self
pub fn execution_number(self, input: i64) -> Self
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 set_execution_number(self, input: Option<i64>) -> Self
pub fn set_execution_number(self, input: Option<i64>) -> Self
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 get_execution_number(&self) -> &Option<i64>
pub fn get_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, input: i32) -> Self
pub fn retry_attempt(self, input: i32) -> Self
The number that indicates how many retry attempts have been completed for this job on this device.
sourcepub fn set_retry_attempt(self, input: Option<i32>) -> Self
pub fn set_retry_attempt(self, input: Option<i32>) -> Self
The number that indicates how many retry attempts have been completed for this job on this device.
sourcepub fn get_retry_attempt(&self) -> &Option<i32>
pub fn get_retry_attempt(&self) -> &Option<i32>
The number that indicates how many retry attempts have been completed for this job on this device.
sourcepub fn build(self) -> JobExecutionSummary
pub fn build(self) -> JobExecutionSummary
Consumes the builder and constructs a JobExecutionSummary
.
Trait Implementations§
source§impl Clone for JobExecutionSummaryBuilder
impl Clone for JobExecutionSummaryBuilder
source§fn clone(&self) -> JobExecutionSummaryBuilder
fn clone(&self) -> JobExecutionSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for JobExecutionSummaryBuilder
impl Debug for JobExecutionSummaryBuilder
source§impl Default for JobExecutionSummaryBuilder
impl Default for JobExecutionSummaryBuilder
source§fn default() -> JobExecutionSummaryBuilder
fn default() -> JobExecutionSummaryBuilder
source§impl PartialEq for JobExecutionSummaryBuilder
impl PartialEq for JobExecutionSummaryBuilder
source§fn eq(&self, other: &JobExecutionSummaryBuilder) -> bool
fn eq(&self, other: &JobExecutionSummaryBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.