[][src]Struct rusoto_kinesis_video_archived_media::ListFragmentsInput

pub struct ListFragmentsInput {
    pub fragment_selector: Option<FragmentSelector>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub stream_name: String,
}

Fields

fragment_selector: Option<FragmentSelector>

Describes the timestamp range and timestamp origin for the range of fragments to return.

max_results: Option<i64>

The total number of fragments to return. If the total number of fragments available is more than the value specified in max-results, then a ListFragmentsOutput$NextToken is provided in the output that you can use to resume pagination.

next_token: Option<String>

A token to specify where to start paginating. This is the ListFragmentsOutput$NextToken from a previously truncated response.

stream_name: String

The name of the stream from which to retrieve a fragment list.

Trait Implementations

impl Clone for ListFragmentsInput[src]

impl Debug for ListFragmentsInput[src]

impl Default for ListFragmentsInput[src]

impl PartialEq<ListFragmentsInput> for ListFragmentsInput[src]

impl Serialize for ListFragmentsInput[src]

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