pub struct JobSummary {
pub completed_at: Option<f64>,
pub created_at: Option<f64>,
pub job_arn: Option<String>,
pub job_id: Option<String>,
pub last_updated_at: Option<f64>,
pub status: Option<String>,
pub target_selection: Option<String>,
pub thing_group_id: Option<String>,
}Expand description
The job summary.
Fields§
§completed_at: Option<f64>The time, in seconds since the epoch, when the job completed.
created_at: Option<f64>The time, in seconds since the epoch, when the job was created.
job_arn: Option<String>The job ARN.
job_id: Option<String>The unique identifier you assigned to this job when it was created.
last_updated_at: Option<f64>The time, in seconds since the epoch, when the job was last updated.
status: Option<String>The job summary status.
target_selection: Option<String>Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group.
thing_group_id: Option<String>The ID of the thing group.
Trait Implementations§
Source§impl Clone for JobSummary
impl Clone for JobSummary
Source§fn clone(&self) -> JobSummary
fn clone(&self) -> JobSummary
Returns a duplicate 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 JobSummary
impl Debug for JobSummary
Source§impl Default for JobSummary
impl Default for JobSummary
Source§fn default() -> JobSummary
fn default() -> JobSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobSummary
impl<'de> Deserialize<'de> for JobSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for JobSummary
impl PartialEq for JobSummary
impl StructuralPartialEq for JobSummary
Auto Trait Implementations§
impl Freeze for JobSummary
impl RefUnwindSafe for JobSummary
impl Send for JobSummary
impl Sync for JobSummary
impl Unpin for JobSummary
impl UnwindSafe for JobSummary
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