Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data Channel = Channel' {}
- newChannel :: Channel
- channel_playbackUrl :: Lens' Channel (Maybe Text)
- channel_authorized :: Lens' Channel (Maybe Bool)
- channel_arn :: Lens' Channel (Maybe Text)
- channel_latencyMode :: Lens' Channel (Maybe ChannelLatencyMode)
- channel_name :: Lens' Channel (Maybe Text)
- channel_recordingConfigurationArn :: Lens' Channel (Maybe Text)
- channel_type :: Lens' Channel (Maybe ChannelType)
- channel_tags :: Lens' Channel (Maybe (HashMap Text Text))
- channel_ingestEndpoint :: Lens' Channel (Maybe Text)
Documentation
Object specifying a channel.
See: newChannel
smart constructor.
Channel' | |
|
Instances
newChannel :: Channel Source #
Create a value of Channel
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:playbackUrl:Channel'
, channel_playbackUrl
- Channel playback URL.
$sel:authorized:Channel'
, channel_authorized
- Whether the channel is private (enabled for playback authorization).
Default: false
.
$sel:arn:Channel'
, channel_arn
- Channel ARN.
$sel:latencyMode:Channel'
, channel_latencyMode
- Channel latency mode. Use NORMAL
to broadcast and deliver live video
up to Full HD. Use LOW
for near-real-time interaction with viewers.
Default: LOW
. (Note: In the Amazon IVS console, LOW
and NORMAL
correspond to Ultra-low and Standard, respectively.)
$sel:name:Channel'
, channel_name
- Channel name.
$sel:recordingConfigurationArn:Channel'
, channel_recordingConfigurationArn
- Recording-configuration ARN. A value other than an empty string
indicates that recording is enabled. Default: "" (empty string,
recording is disabled).
$sel:type':Channel'
, channel_type
- Channel type, which determines the allowable resolution and bitrate. /If
you exceed the allowable resolution or bitrate, the stream probably will
disconnect immediately./ Default: STANDARD
. Valid values:
STANDARD
: Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through.BASIC
: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 480p and bitrate can be up to 1.5 Mbps.
$sel:tags:Channel'
, channel_tags
- Array of 1-50 maps, each of the form string:string (key:value)
.
$sel:ingestEndpoint:Channel'
, channel_ingestEndpoint
- Channel ingest endpoint, part of the definition of an ingest server,
used when you set up streaming software.
channel_authorized :: Lens' Channel (Maybe Bool) Source #
Whether the channel is private (enabled for playback authorization).
Default: false
.
channel_latencyMode :: Lens' Channel (Maybe ChannelLatencyMode) Source #
Channel latency mode. Use NORMAL
to broadcast and deliver live video
up to Full HD. Use LOW
for near-real-time interaction with viewers.
Default: LOW
. (Note: In the Amazon IVS console, LOW
and NORMAL
correspond to Ultra-low and Standard, respectively.)
channel_recordingConfigurationArn :: Lens' Channel (Maybe Text) Source #
Recording-configuration ARN. A value other than an empty string indicates that recording is enabled. Default: "" (empty string, recording is disabled).
channel_type :: Lens' Channel (Maybe ChannelType) Source #
Channel type, which determines the allowable resolution and bitrate. /If
you exceed the allowable resolution or bitrate, the stream probably will
disconnect immediately./ Default: STANDARD
. Valid values:
STANDARD
: Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through.BASIC
: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 480p and bitrate can be up to 1.5 Mbps.