Struct rusoto_iot::ListJobsRequest[][src]

pub struct ListJobsRequest {
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub status: Option<String>,
    pub target_selection: Option<String>,
    pub thing_group_id: Option<String>,
    pub thing_group_name: Option<String>,
}

Fields

The maximum number of results to return per request.

The token to retrieve the next set of results.

An optional filter that lets you search for jobs that have the specified status.

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.

A filter that limits the returned jobs to those for the specified group.

A filter that limits the returned jobs to those for the specified group.

Trait Implementations

impl Default for ListJobsRequest
[src]

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

impl Debug for ListJobsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListJobsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListJobsRequest
[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