RtmpGroupSettings

public struct RtmpGroupSettings : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Authentication scheme to use when connecting with CDN

    Declaration

    Swift

    public let authenticationScheme: AuthenticationScheme?
  • 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.

    Declaration

    Swift

    public let cacheFullBehavior: RtmpCacheFullBehavior?
  • Cache length, in seconds, is used to calculate buffer size.

    Declaration

    Swift

    public let cacheLength: Int?
  • 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.

    Declaration

    Swift

    public let captionData: RtmpCaptionData?
  • Controls the behavior of this RTMP group if input becomes unavailable.

    • emitOutput: Emit a slate until input returns.
    • pauseOutput: Stop transmitting data until input returns. This does not close the underlying RTMP connection.

    Declaration

    Swift

    public let inputLossAction: InputLossActionForRtmpOut?
  • If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.

    Declaration

    Swift

    public let restartDelay: Int?
  • Undocumented

    Declaration

    Swift

    public init(authenticationScheme: AuthenticationScheme? = nil, cacheFullBehavior: RtmpCacheFullBehavior? = nil, cacheLength: Int? = nil, captionData: RtmpCaptionData? = nil, inputLossAction: InputLossActionForRtmpOut? = nil, restartDelay: Int? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws