[][src]Struct rusoto_medialive::RtmpGroupSettings

pub struct RtmpGroupSettings {
    pub authentication_scheme: Option<String>,
    pub cache_full_behavior: Option<String>,
    pub cache_length: Option<i64>,
    pub caption_data: Option<String>,
    pub restart_delay: Option<i64>,
}

Placeholder documentation for RtmpGroupSettings

Fields

Authentication scheme to use when connecting with CDN

Controls behavior when content cache fills up. If remote origin server stalls the RTMP connection and does not accept content fast enough the 'Media Cache' will fill up. When the cache reaches the duration specified by cacheLength the cache will stop accepting new content. If set to disconnectImmediately, the RTMP output will force a disconnect. Clear the media cache, and reconnect after restartDelay seconds. If set to waitForServer, the RTMP output will wait up to 5 minutes to allow the origin server to begin accepting data again.

Cache length, in seconds, is used to calculate buffer size.

Controls the types of data that passes to onCaptionInfo outputs. If set to 'all' then 608 and 708 carried DTVCC data will be passed. If set to 'field1AndField2608' then DTVCC data will be stripped out, but 608 data from both fields will be passed. If set to 'field1608' then only the data carried in 608 from field 1 video will be passed.

If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.

Trait Implementations

impl Clone for RtmpGroupSettings
[src]

Performs copy-assignment from source. Read more

impl Default for RtmpGroupSettings
[src]

impl PartialEq<RtmpGroupSettings> for RtmpGroupSettings
[src]

impl Debug for RtmpGroupSettings
[src]

impl Serialize for RtmpGroupSettings
[src]

impl<'de> Deserialize<'de> for RtmpGroupSettings
[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