[][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 Clone for UpdateStreamInput[src]

impl Debug for UpdateStreamInput[src]

impl Default for UpdateStreamInput[src]

impl PartialEq<UpdateStreamInput> for UpdateStreamInput[src]

impl Serialize for UpdateStreamInput[src]

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