[][src]Struct rusoto_kinesis_video_media::StartSelector

pub struct StartSelector {
    pub after_fragment_number: Option<String>,
    pub continuation_token: Option<String>,
    pub start_selector_type: String,
    pub start_timestamp: Option<f64>,
}

Identifies the chunk on the Kinesis video stream where you want the GetMedia API to start returning media data. You have the following options to identify the starting chunk:

Fields

after_fragment_number: Option<String>

Specifies the fragment number from where you want the GetMedia API to start returning the fragments.

continuation_token: Option<String>

Continuation token that Kinesis Video Streams returned in the previous GetMedia response. The GetMedia API then starts with the chunk identified by the continuation token.

start_selector_type: String

Identifies the fragment on the Kinesis video stream where you want to start getting the data from.

If you choose the NOW, EARLIEST, or CONTINUATION_TOKEN as the startSelectorType, you don't provide any additional information in the startSelector.

start_timestamp: Option<f64>

A timestamp value. This value is required if you choose the PRODUCER_TIMESTAMP or the SERVER_TIMESTAMP as the startSelectorType. The GetMedia API then starts with the chunk containing the fragment that has the specified timestamp.

Trait Implementations

impl PartialEq<StartSelector> for StartSelector[src]

impl Default for StartSelector[src]

impl Clone for StartSelector[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for StartSelector[src]

impl Serialize for StartSelector[src]

Auto Trait Implementations

impl Send for StartSelector

impl Sync for StartSelector

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self