[][src]Struct rusoto_mediaconvert::ListQueuesRequest

pub struct ListQueuesRequest {
    pub list_by: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub order: Option<String>,
}

Fields

list_by: Option<String>

Optional. When you request a list of queues, you can choose to list them alphabetically by NAME or chronologically by CREATION_DATE. If you don't specify, the service will list them by creation date.

max_results: Option<i64>

Optional. Number of queues, 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 queues.

order: Option<String>

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

Trait Implementations

impl Clone for ListQueuesRequest[src]

impl Debug for ListQueuesRequest[src]

impl Default for ListQueuesRequest[src]

impl PartialEq<ListQueuesRequest> for ListQueuesRequest[src]

impl Serialize for ListQueuesRequest[src]

impl StructuralPartialEq for ListQueuesRequest[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> Instrument for T[src]

impl<T> Instrument 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.