[][src]Struct rusoto_mediaconvert::ListJobsRequest

pub struct ListJobsRequest {
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub order: Option<String>,
    pub queue: Option<String>,
    pub status: Option<String>,
}

Fields

max_results: Option<i64>

Optional. Number of jobs, up to twenty, that will be returned at one time.

next_token: Option<String>

Use this string, provided with the response to a previous request, to request the next batch of jobs.

order: Option<String>

When you request lists of resources, you can optionally specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.

queue: Option<String>

Provide a queue name to get back only jobs from that queue.

status: Option<String>

A job's status can be SUBMITTED, PROGRESSING, COMPLETE, CANCELED, or ERROR.

Trait Implementations

impl Clone for ListJobsRequest[src]

impl Debug for ListJobsRequest[src]

impl Default for ListJobsRequest[src]

impl PartialEq<ListJobsRequest> for ListJobsRequest[src]

impl Serialize for ListJobsRequest[src]

impl StructuralPartialEq for ListJobsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.