aws-sdk-ivs 1.38.0 → 1.39.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivs/client.rb +13 -99
- data/lib/aws-sdk-ivs/types.rb +24 -200
- data/lib/aws-sdk-ivs.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f8e3f0fb3b0b47e3a751a5c99ee05cb86b35bf62bbec4c8aca8fa81aff19bbd
|
4
|
+
data.tar.gz: c25be77af794eba2f5489c9206fbd909fb15cc1cdcc3a719f329a078a6e2afdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 141742dfeb37227629c80c4f5c37f60d95b5f3e6cee11c0ddae2ae9a1b4f98990bb4eedb95325fa83632985b581f96fd56bf9c2eee0e222cb024ee5c156532be
|
7
|
+
data.tar.gz: 0cd657c886ce3e33b6bbef24e3b8e9b9139fc44fe7d0eb41898490d8d4080807ee7eec0dcd40ca9d7fa95c765b2438821c11870708aa9af22c9a8a075dad1b6b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.39.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
@@ -553,55 +553,12 @@ module Aws::IVS
|
|
553
553
|
# @option params [String] :type
|
554
554
|
# Channel type, which determines the allowable resolution and bitrate.
|
555
555
|
# *If you exceed the allowable input resolution or bitrate, the stream
|
556
|
-
# probably will disconnect immediately.*
|
557
|
-
#
|
558
|
-
#
|
559
|
-
#
|
560
|
-
#
|
561
|
-
#
|
562
|
-
#
|
563
|
-
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original input
|
564
|
-
# quality to viewers. The viewer’s video-quality choice is limited to
|
565
|
-
# the original input. Input resolution can be up to 1080p and bitrate
|
566
|
-
# can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
|
567
|
-
# between 480p and 1080p. Original audio is passed through.
|
568
|
-
#
|
569
|
-
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
570
|
-
# from the original input, to automatically give viewers the best
|
571
|
-
# experience for their devices and network conditions. Transcoding
|
572
|
-
# allows higher playback quality across a range of download speeds.
|
573
|
-
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
574
|
-
# Audio is transcoded only for renditions 360p and below; above that,
|
575
|
-
# audio is passed through. This is the default when you create a
|
576
|
-
# channel.
|
577
|
-
#
|
578
|
-
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are generated
|
579
|
-
# from the original input, to automatically give viewers the best
|
580
|
-
# experience for their devices and network conditions. Input
|
581
|
-
# resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
|
582
|
-
# output is capped at SD quality (480p). You can select an optional
|
583
|
-
# transcode preset (see below). Audio for all renditions is
|
584
|
-
# transcoded, and an audio-only rendition is available.
|
585
|
-
#
|
586
|
-
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are generated
|
587
|
-
# from the original input, to automatically give viewers the best
|
588
|
-
# experience for their devices and network conditions. Input
|
589
|
-
# resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
|
590
|
-
# output is capped at HD quality (720p). You can select an optional
|
591
|
-
# transcode preset (see below). Audio for all renditions is
|
592
|
-
# transcoded, and an audio-only rendition is available.
|
593
|
-
#
|
594
|
-
# Optional *transcode presets* (available for the `ADVANCED` types)
|
595
|
-
# allow you to trade off available download bandwidth and video quality,
|
596
|
-
# to optimize the viewing experience. There are two presets:
|
597
|
-
#
|
598
|
-
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
599
|
-
# quality level. Use it if you have low download bandwidth and/or
|
600
|
-
# simple video content (e.g., talking heads)
|
601
|
-
#
|
602
|
-
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
603
|
-
# level. Use it if you have high download bandwidth and/or complex
|
604
|
-
# video content (e.g., flashes and quick scene changes).
|
556
|
+
# probably will disconnect immediately.* Default: `STANDARD`. For
|
557
|
+
# details, see [Channel Types][1].
|
558
|
+
#
|
559
|
+
#
|
560
|
+
#
|
561
|
+
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
|
605
562
|
#
|
606
563
|
# @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
607
564
|
#
|
@@ -1790,55 +1747,12 @@ module Aws::IVS
|
|
1790
1747
|
# @option params [String] :type
|
1791
1748
|
# Channel type, which determines the allowable resolution and bitrate.
|
1792
1749
|
# *If you exceed the allowable input resolution or bitrate, the stream
|
1793
|
-
# probably will disconnect immediately.*
|
1794
|
-
#
|
1795
|
-
#
|
1796
|
-
#
|
1797
|
-
#
|
1798
|
-
#
|
1799
|
-
#
|
1800
|
-
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original input
|
1801
|
-
# quality to viewers. The viewer’s video-quality choice is limited to
|
1802
|
-
# the original input. Input resolution can be up to 1080p and bitrate
|
1803
|
-
# can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
|
1804
|
-
# between 480p and 1080p. Original audio is passed through.
|
1805
|
-
#
|
1806
|
-
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
1807
|
-
# from the original input, to automatically give viewers the best
|
1808
|
-
# experience for their devices and network conditions. Transcoding
|
1809
|
-
# allows higher playback quality across a range of download speeds.
|
1810
|
-
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
1811
|
-
# Audio is transcoded only for renditions 360p and below; above that,
|
1812
|
-
# audio is passed through. This is the default when you create a
|
1813
|
-
# channel.
|
1814
|
-
#
|
1815
|
-
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are generated
|
1816
|
-
# from the original input, to automatically give viewers the best
|
1817
|
-
# experience for their devices and network conditions. Input
|
1818
|
-
# resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
|
1819
|
-
# output is capped at SD quality (480p). You can select an optional
|
1820
|
-
# transcode preset (see below). Audio for all renditions is
|
1821
|
-
# transcoded, and an audio-only rendition is available.
|
1822
|
-
#
|
1823
|
-
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are generated
|
1824
|
-
# from the original input, to automatically give viewers the best
|
1825
|
-
# experience for their devices and network conditions. Input
|
1826
|
-
# resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
|
1827
|
-
# output is capped at HD quality (720p). You can select an optional
|
1828
|
-
# transcode preset (see below). Audio for all renditions is
|
1829
|
-
# transcoded, and an audio-only rendition is available.
|
1830
|
-
#
|
1831
|
-
# Optional *transcode presets* (available for the `ADVANCED` types)
|
1832
|
-
# allow you to trade off available download bandwidth and video quality,
|
1833
|
-
# to optimize the viewing experience. There are two presets:
|
1834
|
-
#
|
1835
|
-
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
1836
|
-
# quality level. Use it if you have low download bandwidth and/or
|
1837
|
-
# simple video content (e.g., talking heads)
|
1838
|
-
#
|
1839
|
-
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
1840
|
-
# level. Use it if you have high download bandwidth and/or complex
|
1841
|
-
# video content (e.g., flashes and quick scene changes).
|
1750
|
+
# probably will disconnect immediately.* Default: `STANDARD`. For
|
1751
|
+
# details, see [Channel Types][1].
|
1752
|
+
#
|
1753
|
+
#
|
1754
|
+
#
|
1755
|
+
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
|
1842
1756
|
#
|
1843
1757
|
# @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1844
1758
|
#
|
@@ -1894,7 +1808,7 @@ module Aws::IVS
|
|
1894
1808
|
params: params,
|
1895
1809
|
config: config)
|
1896
1810
|
context[:gem_name] = 'aws-sdk-ivs'
|
1897
|
-
context[:gem_version] = '1.
|
1811
|
+
context[:gem_version] = '1.39.0'
|
1898
1812
|
Seahorse::Client::Request.new(handlers, context)
|
1899
1813
|
end
|
1900
1814
|
|
data/lib/aws-sdk-ivs/types.rb
CHANGED
@@ -282,56 +282,12 @@ module Aws::IVS
|
|
282
282
|
# @!attribute [rw] type
|
283
283
|
# Channel type, which determines the allowable resolution and bitrate.
|
284
284
|
# *If you exceed the allowable input resolution or bitrate, the stream
|
285
|
-
# probably will disconnect immediately.*
|
286
|
-
#
|
287
|
-
#
|
288
|
-
#
|
289
|
-
#
|
290
|
-
#
|
291
|
-
#
|
292
|
-
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
|
293
|
-
# input quality to viewers. The viewer’s video-quality choice is
|
294
|
-
# limited to the original input. Input resolution can be up to 1080p
|
295
|
-
# and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
|
296
|
-
# resolutions between 480p and 1080p. Original audio is passed
|
297
|
-
# through.
|
298
|
-
#
|
299
|
-
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
300
|
-
# from the original input, to automatically give viewers the best
|
301
|
-
# experience for their devices and network conditions. Transcoding
|
302
|
-
# allows higher playback quality across a range of download speeds.
|
303
|
-
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
304
|
-
# Audio is transcoded only for renditions 360p and below; above
|
305
|
-
# that, audio is passed through. This is the default when you create
|
306
|
-
# a channel.
|
307
|
-
#
|
308
|
-
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are
|
309
|
-
# generated from the original input, to automatically give viewers
|
310
|
-
# the best experience for their devices and network conditions.
|
311
|
-
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
312
|
-
# Mbps; output is capped at SD quality (480p). You can select an
|
313
|
-
# optional transcode preset (see below). Audio for all renditions is
|
314
|
-
# transcoded, and an audio-only rendition is available.
|
315
|
-
#
|
316
|
-
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are
|
317
|
-
# generated from the original input, to automatically give viewers
|
318
|
-
# the best experience for their devices and network conditions.
|
319
|
-
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
320
|
-
# Mbps; output is capped at HD quality (720p). You can select an
|
321
|
-
# optional transcode preset (see below). Audio for all renditions is
|
322
|
-
# transcoded, and an audio-only rendition is available.
|
323
|
-
#
|
324
|
-
# Optional *transcode presets* (available for the `ADVANCED` types)
|
325
|
-
# allow you to trade off available download bandwidth and video
|
326
|
-
# quality, to optimize the viewing experience. There are two presets:
|
327
|
-
#
|
328
|
-
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
329
|
-
# quality level. Use it if you have low download bandwidth and/or
|
330
|
-
# simple video content (e.g., talking heads)
|
331
|
-
#
|
332
|
-
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
333
|
-
# level. Use it if you have high download bandwidth and/or complex
|
334
|
-
# video content (e.g., flashes and quick scene changes).
|
285
|
+
# probably will disconnect immediately.* Default: `STANDARD`. For
|
286
|
+
# details, see [Channel Types][1].
|
287
|
+
#
|
288
|
+
#
|
289
|
+
#
|
290
|
+
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
|
335
291
|
# @return [String]
|
336
292
|
#
|
337
293
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/Channel AWS API Documentation
|
@@ -419,56 +375,12 @@ module Aws::IVS
|
|
419
375
|
# @!attribute [rw] type
|
420
376
|
# Channel type, which determines the allowable resolution and bitrate.
|
421
377
|
# *If you exceed the allowable input resolution or bitrate, the stream
|
422
|
-
# probably will disconnect immediately.*
|
423
|
-
#
|
424
|
-
#
|
425
|
-
#
|
426
|
-
#
|
427
|
-
#
|
428
|
-
#
|
429
|
-
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
|
430
|
-
# input quality to viewers. The viewer’s video-quality choice is
|
431
|
-
# limited to the original input. Input resolution can be up to 1080p
|
432
|
-
# and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
|
433
|
-
# resolutions between 480p and 1080p. Original audio is passed
|
434
|
-
# through.
|
435
|
-
#
|
436
|
-
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
437
|
-
# from the original input, to automatically give viewers the best
|
438
|
-
# experience for their devices and network conditions. Transcoding
|
439
|
-
# allows higher playback quality across a range of download speeds.
|
440
|
-
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
441
|
-
# Audio is transcoded only for renditions 360p and below; above
|
442
|
-
# that, audio is passed through. This is the default when you create
|
443
|
-
# a channel.
|
444
|
-
#
|
445
|
-
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are
|
446
|
-
# generated from the original input, to automatically give viewers
|
447
|
-
# the best experience for their devices and network conditions.
|
448
|
-
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
449
|
-
# Mbps; output is capped at SD quality (480p). You can select an
|
450
|
-
# optional transcode preset (see below). Audio for all renditions is
|
451
|
-
# transcoded, and an audio-only rendition is available.
|
452
|
-
#
|
453
|
-
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are
|
454
|
-
# generated from the original input, to automatically give viewers
|
455
|
-
# the best experience for their devices and network conditions.
|
456
|
-
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
457
|
-
# Mbps; output is capped at HD quality (720p). You can select an
|
458
|
-
# optional transcode preset (see below). Audio for all renditions is
|
459
|
-
# transcoded, and an audio-only rendition is available.
|
460
|
-
#
|
461
|
-
# Optional *transcode presets* (available for the `ADVANCED` types)
|
462
|
-
# allow you to trade off available download bandwidth and video
|
463
|
-
# quality, to optimize the viewing experience. There are two presets:
|
464
|
-
#
|
465
|
-
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
466
|
-
# quality level. Use it if you have low download bandwidth and/or
|
467
|
-
# simple video content (e.g., talking heads)
|
468
|
-
#
|
469
|
-
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
470
|
-
# level. Use it if you have high download bandwidth and/or complex
|
471
|
-
# video content (e.g., flashes and quick scene changes).
|
378
|
+
# probably will disconnect immediately.* Default: `STANDARD`. For
|
379
|
+
# details, see [Channel Types][1].
|
380
|
+
#
|
381
|
+
#
|
382
|
+
#
|
383
|
+
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
|
472
384
|
# @return [String]
|
473
385
|
#
|
474
386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ChannelSummary AWS API Documentation
|
@@ -547,56 +459,12 @@ module Aws::IVS
|
|
547
459
|
# @!attribute [rw] type
|
548
460
|
# Channel type, which determines the allowable resolution and bitrate.
|
549
461
|
# *If you exceed the allowable input resolution or bitrate, the stream
|
550
|
-
# probably will disconnect immediately.*
|
551
|
-
#
|
552
|
-
#
|
553
|
-
#
|
554
|
-
#
|
555
|
-
#
|
556
|
-
#
|
557
|
-
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
|
558
|
-
# input quality to viewers. The viewer’s video-quality choice is
|
559
|
-
# limited to the original input. Input resolution can be up to 1080p
|
560
|
-
# and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
|
561
|
-
# resolutions between 480p and 1080p. Original audio is passed
|
562
|
-
# through.
|
563
|
-
#
|
564
|
-
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
565
|
-
# from the original input, to automatically give viewers the best
|
566
|
-
# experience for their devices and network conditions. Transcoding
|
567
|
-
# allows higher playback quality across a range of download speeds.
|
568
|
-
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
569
|
-
# Audio is transcoded only for renditions 360p and below; above
|
570
|
-
# that, audio is passed through. This is the default when you create
|
571
|
-
# a channel.
|
572
|
-
#
|
573
|
-
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are
|
574
|
-
# generated from the original input, to automatically give viewers
|
575
|
-
# the best experience for their devices and network conditions.
|
576
|
-
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
577
|
-
# Mbps; output is capped at SD quality (480p). You can select an
|
578
|
-
# optional transcode preset (see below). Audio for all renditions is
|
579
|
-
# transcoded, and an audio-only rendition is available.
|
580
|
-
#
|
581
|
-
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are
|
582
|
-
# generated from the original input, to automatically give viewers
|
583
|
-
# the best experience for their devices and network conditions.
|
584
|
-
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
585
|
-
# Mbps; output is capped at HD quality (720p). You can select an
|
586
|
-
# optional transcode preset (see below). Audio for all renditions is
|
587
|
-
# transcoded, and an audio-only rendition is available.
|
588
|
-
#
|
589
|
-
# Optional *transcode presets* (available for the `ADVANCED` types)
|
590
|
-
# allow you to trade off available download bandwidth and video
|
591
|
-
# quality, to optimize the viewing experience. There are two presets:
|
592
|
-
#
|
593
|
-
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
594
|
-
# quality level. Use it if you have low download bandwidth and/or
|
595
|
-
# simple video content (e.g., talking heads)
|
596
|
-
#
|
597
|
-
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
598
|
-
# level. Use it if you have high download bandwidth and/or complex
|
599
|
-
# video content (e.g., flashes and quick scene changes).
|
462
|
+
# probably will disconnect immediately.* Default: `STANDARD`. For
|
463
|
+
# details, see [Channel Types][1].
|
464
|
+
#
|
465
|
+
#
|
466
|
+
#
|
467
|
+
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
|
600
468
|
# @return [String]
|
601
469
|
#
|
602
470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateChannelRequest AWS API Documentation
|
@@ -2113,56 +1981,12 @@ module Aws::IVS
|
|
2113
1981
|
# @!attribute [rw] type
|
2114
1982
|
# Channel type, which determines the allowable resolution and bitrate.
|
2115
1983
|
# *If you exceed the allowable input resolution or bitrate, the stream
|
2116
|
-
# probably will disconnect immediately.*
|
2117
|
-
#
|
2118
|
-
#
|
2119
|
-
#
|
2120
|
-
#
|
2121
|
-
#
|
2122
|
-
#
|
2123
|
-
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
|
2124
|
-
# input quality to viewers. The viewer’s video-quality choice is
|
2125
|
-
# limited to the original input. Input resolution can be up to 1080p
|
2126
|
-
# and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
|
2127
|
-
# resolutions between 480p and 1080p. Original audio is passed
|
2128
|
-
# through.
|
2129
|
-
#
|
2130
|
-
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
2131
|
-
# from the original input, to automatically give viewers the best
|
2132
|
-
# experience for their devices and network conditions. Transcoding
|
2133
|
-
# allows higher playback quality across a range of download speeds.
|
2134
|
-
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
2135
|
-
# Audio is transcoded only for renditions 360p and below; above
|
2136
|
-
# that, audio is passed through. This is the default when you create
|
2137
|
-
# a channel.
|
2138
|
-
#
|
2139
|
-
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are
|
2140
|
-
# generated from the original input, to automatically give viewers
|
2141
|
-
# the best experience for their devices and network conditions.
|
2142
|
-
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
2143
|
-
# Mbps; output is capped at SD quality (480p). You can select an
|
2144
|
-
# optional transcode preset (see below). Audio for all renditions is
|
2145
|
-
# transcoded, and an audio-only rendition is available.
|
2146
|
-
#
|
2147
|
-
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are
|
2148
|
-
# generated from the original input, to automatically give viewers
|
2149
|
-
# the best experience for their devices and network conditions.
|
2150
|
-
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
2151
|
-
# Mbps; output is capped at HD quality (720p). You can select an
|
2152
|
-
# optional transcode preset (see below). Audio for all renditions is
|
2153
|
-
# transcoded, and an audio-only rendition is available.
|
2154
|
-
#
|
2155
|
-
# Optional *transcode presets* (available for the `ADVANCED` types)
|
2156
|
-
# allow you to trade off available download bandwidth and video
|
2157
|
-
# quality, to optimize the viewing experience. There are two presets:
|
2158
|
-
#
|
2159
|
-
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
2160
|
-
# quality level. Use it if you have low download bandwidth and/or
|
2161
|
-
# simple video content (e.g., talking heads)
|
2162
|
-
#
|
2163
|
-
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
2164
|
-
# level. Use it if you have high download bandwidth and/or complex
|
2165
|
-
# video content (e.g., flashes and quick scene changes).
|
1984
|
+
# probably will disconnect immediately.* Default: `STANDARD`. For
|
1985
|
+
# details, see [Channel Types][1].
|
1986
|
+
#
|
1987
|
+
#
|
1988
|
+
#
|
1989
|
+
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
|
2166
1990
|
# @return [String]
|
2167
1991
|
#
|
2168
1992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/UpdateChannelRequest AWS API Documentation
|
data/lib/aws-sdk-ivs.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ivs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.39.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|