[][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 input_loss_action: Option<String>,
    pub restart_delay: Option<i64>,
}

Rtmp Group Settings

Fields

authentication_scheme: Option<String>

Authentication scheme to use when connecting with CDN

cache_full_behavior: Option<String>

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: Option<i64>

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

caption_data: Option<String>

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.

input_loss_action: Option<String>

Controls the behavior of this RTMP group if input becomes unavailable.

restart_delay: Option<i64>

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 PartialEq<RtmpGroupSettings> for RtmpGroupSettings[src]

impl Default for RtmpGroupSettings[src]

impl Clone for RtmpGroupSettings[src]

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

Performs copy-assignment from source. Read more

impl Debug for RtmpGroupSettings[src]

impl Serialize for RtmpGroupSettings[src]

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

Auto Trait Implementations

impl Send for RtmpGroupSettings

impl Sync for RtmpGroupSettings

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
    T: From<U>, 
[src]

type Error = !

🔬 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> 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

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

The type returned in the event of a conversion error.

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

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