[][src]Struct rusoto_kinesisvideo::UpdateStreamInput

pub struct UpdateStreamInput {
    pub current_version: String,
    pub device_name: Option<String>,
    pub media_type: Option<String>,
    pub stream_arn: Option<String>,
    pub stream_name: Option<String>,
}

Fields

current_version: String

The version of the stream whose metadata you want to update.

device_name: Option<String>

The name of the device that is writing to the stream.

In the current implementation, Kinesis Video Streams does not use this name.

media_type: Option<String>

The stream's media type. Use MediaType to specify the type of content that the stream contains to the consumers of the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements.

To play video on the console, you must specify the correct video type. For example, if the video in the stream is H.264, specify video/h264 as the MediaType.

stream_arn: Option<String>

The ARN of the stream whose metadata you want to update.

stream_name: Option<String>

The name of the stream whose metadata you want to update.

The stream name is an identifier for the stream, and must be unique for each account and region.

Trait Implementations

impl PartialEq<UpdateStreamInput> for UpdateStreamInput[src]

impl Default for UpdateStreamInput[src]

impl Clone for UpdateStreamInput[src]

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

Performs copy-assignment from source. Read more

impl Debug for UpdateStreamInput[src]

impl Serialize for UpdateStreamInput[src]

Auto Trait Implementations

impl Send for UpdateStreamInput

impl Sync for UpdateStreamInput

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