[][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_timing_source: Option<String>,
    pub support_low_framerate_inputs: Option<String>,
}

Placeholder documentation for GlobalConfiguration

Fields

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

Indicates the action to take when an input completes (e.g. end-of-file.) Options include immediately switching to the next sequential input (via "switchInput"), switching to the next input and looping back to the first input when last input ends (via "switchAndLoopInputs") or not switching inputs and instead transcoding black / color / slate images per the "Input Loss Behavior" configuration until an activateInput REST command is received (via "none").

Settings for system actions when input is lost.

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.

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]

Performs copy-assignment from source. Read more

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> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut 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 for T

Should always be Self

impl<T> Erased for T