Struct rusoto_iot::JobProcessDetails[][src]

pub struct JobProcessDetails {
    pub number_of_canceled_things: Option<i64>,
    pub number_of_failed_things: Option<i64>,
    pub number_of_in_progress_things: Option<i64>,
    pub number_of_queued_things: Option<i64>,
    pub number_of_rejected_things: Option<i64>,
    pub number_of_removed_things: Option<i64>,
    pub number_of_succeeded_things: Option<i64>,
    pub processing_targets: Option<Vec<String>>,
}

The job process details.

Fields

The number of things that cancelled the job.

The number of things that failed executing the job.

The number of things currently executing the job.

The number of things that are awaiting execution of the job.

The number of things that rejected the job.

The number of things that are no longer scheduled to execute the job because they have been deleted or have been removed from the group that was a target of the job.

The number of things which successfully completed the job.

The devices on which the job is executing.

Trait Implementations

impl Default for JobProcessDetails
[src]

Returns the "default value" for a type. Read more

impl Debug for JobProcessDetails
[src]

Formats the value using the given formatter. Read more

impl Clone for JobProcessDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for JobProcessDetails
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations