[][src]Struct rusoto_medialive::DescribeMultiplexResponse

pub struct DescribeMultiplexResponse {
    pub arn: Option<String>,
    pub availability_zones: Option<Vec<String>>,
    pub destinations: Option<Vec<MultiplexOutputDestination>>,
    pub id: Option<String>,
    pub multiplex_settings: Option<MultiplexSettings>,
    pub name: Option<String>,
    pub pipelines_running_count: Option<i64>,
    pub program_count: Option<i64>,
    pub state: Option<String>,
    pub tags: Option<HashMap<String, String>>,
}

Placeholder documentation for DescribeMultiplexResponse

Fields

arn: Option<String>

The unique arn of the multiplex.

availability_zones: Option<Vec<String>>

A list of availability zones for the multiplex.

destinations: Option<Vec<MultiplexOutputDestination>>

A list of the multiplex output destinations.

id: Option<String>

The unique id of the multiplex.

multiplex_settings: Option<MultiplexSettings>

Configuration for a multiplex event.

name: Option<String>

The name of the multiplex.

pipelines_running_count: Option<i64>

The number of currently healthy pipelines.

program_count: Option<i64>

The number of programs in the multiplex.

state: Option<String>

The current state of the multiplex.

tags: Option<HashMap<String, String>>

A collection of key-value pairs.

Trait Implementations

impl Clone for DescribeMultiplexResponse[src]

impl Debug for DescribeMultiplexResponse[src]

impl Default for DescribeMultiplexResponse[src]

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

impl PartialEq<DescribeMultiplexResponse> for DescribeMultiplexResponse[src]

impl StructuralPartialEq for DescribeMultiplexResponse[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.