Show / Hide Table of Contents

Enum ChannelType

(experimental) The channel type, which determines the allowable resolution and bitrate.

Namespace: Amazon.CDK.AWS.Ivs.Alpha
Assembly: Amazon.CDK.AWS.IVS.Alpha.dll
Syntax (csharp)
public enum ChannelType
Syntax (vb)
Public Enum ChannelType
Remarks

If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately.

Stability: Experimental

See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-channel.html

ExampleMetadata: infused

Examples
var myChannel = new Channel(this, "myChannel", new ChannelProps {
                 Type = ChannelType.ADVANCED_HD,
                 Preset = Preset.CONSTRAINED_BANDWIDTH_DELIVERY
             });

Synopsis

Fields

ADVANCED_HD

(experimental) Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions.

ADVANCED_SD

(experimental) Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions.

BASIC

(experimental) Delivers the original input to viewers.

STANDARD

(experimental) Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions.

Fields

Name Description
ADVANCED_HD

(experimental) Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions.

ADVANCED_SD

(experimental) Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions.

BASIC

(experimental) Delivers the original input to viewers.

STANDARD

(experimental) Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions.

Back to top Generated by DocFX