Struct rusoto_iot::ListJobExecutionsForJobRequest [] [src]

pub struct ListJobExecutionsForJobRequest {
    pub job_id: String,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub status: Option<String>,
}

Fields

The unique identifier you assigned to this job when it was created.

The maximum number of results to be returned per request.

The token to retrieve the next set of results.

The status of the job.

Trait Implementations

impl Default for ListJobExecutionsForJobRequest
[src]

[src]

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

impl Debug for ListJobExecutionsForJobRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListJobExecutionsForJobRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations