HlsInputSettings

public struct HlsInputSettings : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • When specified the HLS stream with the m3u8 BANDWIDTH that most closely matches this value will be chosen, otherwise the highest bandwidth stream in the m3u8 will be chosen. The bitrate is specified in bits per second, as in an HLS manifest.

    Declaration

    Swift

    public let bandwidth: Int?
  • When specified, reading of the HLS input will begin this many buffer segments from the end (most recently written segment). When not specified, the HLS input will begin with the first segment specified in the m3u8.

    Declaration

    Swift

    public let bufferSegments: Int?
  • The number of consecutive times that attempts to read a manifest or segment must fail before the input is considered unavailable.

    Declaration

    Swift

    public let retries: Int?
  • The number of seconds between retries when an attempt to read a manifest or segment fails.

    Declaration

    Swift

    public let retryInterval: Int?
  • Undocumented

    Declaration

    Swift

    public init(bandwidth: Int? = nil, bufferSegments: Int? = nil, retries: Int? = nil, retryInterval: Int? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws