[][src]Struct rusoto_kinesisvideo::StreamInfo

pub struct StreamInfo {
    pub creation_time: Option<f64>,
    pub data_retention_in_hours: Option<i64>,
    pub device_name: Option<String>,
    pub kms_key_id: Option<String>,
    pub media_type: Option<String>,
    pub status: Option<String>,
    pub stream_arn: Option<String>,
    pub stream_name: Option<String>,
    pub version: Option<String>,
}

An object describing a Kinesis video stream.

Fields

creation_time: Option<f64>

A time stamp that indicates when the stream was created.

data_retention_in_hours: Option<i64>

How long the stream retains data, in hours.

device_name: Option<String>

The name of the device that is associated with the stream.

kms_key_id: Option<String>

The ID of the AWS Key Management Service (AWS KMS) key that Kinesis Video Streams uses to encrypt data on the stream.

media_type: Option<String>

The MediaType of the stream.

status: Option<String>

The status of the stream.

stream_arn: Option<String>

The Amazon Resource Name (ARN) of the stream.

stream_name: Option<String>

The name of the stream.

version: Option<String>

The version of the stream.

Trait Implementations

impl Clone for StreamInfo[src]

impl Debug for StreamInfo[src]

impl Default for StreamInfo[src]

impl<'de> Deserialize<'de> for StreamInfo[src]

impl PartialEq<StreamInfo> for StreamInfo[src]

impl StructuralPartialEq for StreamInfo[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.