[][src]Struct rusoto_mediapackage::ListHarvestJobsRequest

pub struct ListHarvestJobsRequest {
    pub include_channel_id: Option<String>,
    pub include_status: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

include_channel_id: Option<String>

When specified, the request will return only HarvestJobs associated with the given Channel ID.

include_status: Option<String>

When specified, the request will return only HarvestJobs in the given status.

max_results: Option<i64>

The upper bound on the number of records to return.

next_token: Option<String>

A token used to resume pagination from the end of a previous request.

Trait Implementations

impl Clone for ListHarvestJobsRequest[src]

impl Debug for ListHarvestJobsRequest[src]

impl Default for ListHarvestJobsRequest[src]

impl PartialEq<ListHarvestJobsRequest> for ListHarvestJobsRequest[src]

impl Serialize for ListHarvestJobsRequest[src]

impl StructuralPartialEq for ListHarvestJobsRequest[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, 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.