[][src]Struct rusoto_medialive::GlobalConfiguration

pub struct GlobalConfiguration {
    pub initial_audio_gain: Option<i64>,
    pub input_end_action: Option<String>,
    pub input_loss_behavior: Option<InputLossBehavior>,
    pub output_locking_mode: Option<String>,
    pub output_timing_source: Option<String>,
    pub support_low_framerate_inputs: Option<String>,
}

Global Configuration

Fields

initial_audio_gain: Option<i64>

Value to set the initial audio gain for the Live Event.

input_end_action: Option<String>

Indicates the action to take when the current input completes (e.g. end-of-file). When switchAndLoopInputs is configured the encoder will restart at the beginning of the first input. When "none" is configured the encoder will transcode either black, a solid color, or a user specified slate images per the "Input Loss Behavior" configuration until the next input switch occurs (which is controlled through the Channel Schedule API).

input_loss_behavior: Option<InputLossBehavior>

Settings for system actions when input is lost.

output_locking_mode: Option<String>

Indicates how MediaLive pipelines are synchronized.

PIPELINELOCKING - MediaLive will attempt to synchronize the output of each pipeline to the other. EPOCHLOCKING - MediaLive will attempt to synchronize the output of each pipeline to the Unix epoch.

output_timing_source: Option<String>

Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally may be locked to another source via NTP) or should be locked to the clock of the source that is providing the input stream.

support_low_framerate_inputs: Option<String>

Adjusts video input buffer for streams with very low video framerates. This is commonly set to enabled for music channels with less than one video frame per second.

Trait Implementations

impl Clone for GlobalConfiguration[src]

impl Default for GlobalConfiguration[src]

impl PartialEq<GlobalConfiguration> for GlobalConfiguration[src]

impl Debug for GlobalConfiguration[src]

impl Serialize for GlobalConfiguration[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self