[][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

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_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]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<GlobalConfiguration> for GlobalConfiguration[src]

impl Default for GlobalConfiguration[src]

impl Debug for GlobalConfiguration[src]

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

impl Serialize 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]

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self