You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IVS::Types::CreateChannelRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateChannelRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "ChannelName",
  latency_mode: "NORMAL", # accepts NORMAL, LOW
  type: "BASIC", # accepts BASIC, STANDARD
  authorized: false,
  tags: {
    "TagKey" => "TagValue",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#authorizedBoolean

Whether the channel is authorized. Default: false.

Returns:

  • (Boolean)

    Whether the channel is authorized.

#latency_modeString

Channel latency mode. Default: LOW.

Possible values:

  • NORMAL
  • LOW

Returns:

  • (String)

    Channel latency mode.

#nameString

Channel name.

Returns:

  • (String)

    Channel name.

#tagsHash<String,String>

Returns:

#typeString

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.

Possible values:

  • BASIC
  • STANDARD

Returns:

  • (String)

    Channel type, which determines the allowable resolution and bitrate.