Struct rusoto_elastictranscoder::ListJobsByStatusRequest[][src]

pub struct ListJobsByStatusRequest {
    pub ascending: Option<String>,
    pub page_token: Option<String>,
    pub status: String,
}

The ListJobsByStatusRequest structure.

Fields

To list jobs in chronological order by the date and time that they were submitted, enter true. To list jobs in reverse chronological order, enter false.

When Elastic Transcoder returns more than one page of results, use pageToken in subsequent GET requests to get each successive page of results.

To get information about all of the jobs associated with the current AWS account that have a given status, specify the following status: Submitted, Progressing, Complete, Canceled, or Error.

Trait Implementations

impl Default for ListJobsByStatusRequest
[src]

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

impl Debug for ListJobsByStatusRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListJobsByStatusRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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