[][src]Struct rusoto_medialive::MultiplexProgramChannelDestinationSettings

pub struct MultiplexProgramChannelDestinationSettings {
    pub multiplex_id: Option<String>,
    pub program_name: Option<String>,
}

Multiplex Program Input Destination Settings for outputting a Channel to a Multiplex

Fields

multiplex_id: Option<String>

The ID of the Multiplex that the encoder is providing output to. You do not need to specify the individual inputs to the Multiplex; MediaLive will handle the connection of the two MediaLive pipelines to the two Multiplex instances. The Multiplex must be in the same region as the Channel.

program_name: Option<String>

The program name of the Multiplex program that the encoder is providing output to.

Trait Implementations

impl Clone for MultiplexProgramChannelDestinationSettings[src]

impl Debug for MultiplexProgramChannelDestinationSettings[src]

impl Default for MultiplexProgramChannelDestinationSettings[src]

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

impl PartialEq<MultiplexProgramChannelDestinationSettings> for MultiplexProgramChannelDestinationSettings[src]

impl Serialize for MultiplexProgramChannelDestinationSettings[src]

impl StructuralPartialEq for MultiplexProgramChannelDestinationSettings[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, 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> Sealed<T> for T where
    T: ?Sized

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.