CreateChannelRequest

public struct CreateChannelRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Whether the channel is authorized. Default: false.

    Declaration

    Swift

    public let authorized: Bool?
  • Channel latency mode. Default: LOW.

    Declaration

    Swift

    public let latencyMode: ChannelLatencyMode?
  • Channel name.

    Declaration

    Swift

    public let name: String?
  • See Channel$tags.

    Declaration

    Swift

    public let tags: [String : String]?
  • Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Valid values: STANDARD: Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Vertical resolution can be up to 1080 and bitrate can be up to 8.5 Mbps. BASIC: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Vertical resolution can be up to 480 and bitrate can be up to 1.5 Mbps. Default: STANDARD.

    Declaration

    Swift

    public let type: ChannelType?
  • Undocumented

    Declaration

    Swift

    public init(authorized: Bool? = nil, latencyMode: ChannelLatencyMode? = nil, name: String? = nil, tags: [String : String]? = nil, type: ChannelType? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws