UpdateChannelRequest
public struct UpdateChannelRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
ARN of the channel to be updated.
Declaration
Swift
public let arn: String
-
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?
-
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(arn: String, authorized: Bool? = nil, latencyMode: ChannelLatencyMode? = nil, name: String? = nil, type: ChannelType? = nil)
-
Declaration
Swift
public func validate(name: String) throws