aws-sdk-ivs 1.30.0 → 1.32.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivs/client.rb +118 -28
- data/lib/aws-sdk-ivs/client_api.rb +6 -0
- data/lib/aws-sdk-ivs/endpoints.rb +1 -0
- data/lib/aws-sdk-ivs/types.rb +225 -30
- 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: e7c23774dd3fca9774e3701997a11a48921c839b7c0fbab8718b31b37febee9c
|
4
|
+
data.tar.gz: 52aacb78a5526b3bec6e7e1bbb9b32b5a498ff8f4e525cf65159f0c1e7c1a5b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d5e12936ba34516a72389b8e860a372cd87d2a34d0bf39bec1826288ac294b4ee7d1eab28b69f9d3dff8413a208b541a3f9fb1e27b319ba5920363daff58ca2
|
7
|
+
data.tar.gz: b88a5f18722db964f746d500b580f72a82dbac3b811f09e6420763fdb28f9bb7f2ef6af8e8f3a64510bfdb3e60a596b8c54c7f97841bfe35a4e1efcede7608b6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.32.0 (2023-06-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.31.0 (2023-06-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - API Update for IVS Advanced Channel type
|
13
|
+
|
4
14
|
1.30.0 (2023-05-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.32.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
@@ -399,10 +399,11 @@ module Aws::IVS
|
|
399
399
|
# resp.channels[0].latency_mode #=> String, one of "NORMAL", "LOW"
|
400
400
|
# resp.channels[0].name #=> String
|
401
401
|
# resp.channels[0].playback_url #=> String
|
402
|
+
# resp.channels[0].preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
402
403
|
# resp.channels[0].recording_configuration_arn #=> String
|
403
404
|
# resp.channels[0].tags #=> Hash
|
404
405
|
# resp.channels[0].tags["TagKey"] #=> String
|
405
|
-
# resp.channels[0].type #=> String, one of "BASIC", "STANDARD"
|
406
|
+
# resp.channels[0].type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
406
407
|
# resp.errors #=> Array
|
407
408
|
# resp.errors[0].arn #=> String
|
408
409
|
# resp.errors[0].code #=> String
|
@@ -473,6 +474,13 @@ module Aws::IVS
|
|
473
474
|
# @option params [String] :name
|
474
475
|
# Channel name.
|
475
476
|
#
|
477
|
+
# @option params [String] :preset
|
478
|
+
# Optional transcode preset for the channel. This is selectable only for
|
479
|
+
# `ADVANCED_HD` and `ADVANCED_SD` channel types. For those channel
|
480
|
+
# types, the default `preset` is `HIGHER_BANDWIDTH_DELIVERY`. For other
|
481
|
+
# channel types (`BASIC` and `STANDARD`), `preset` is the empty string
|
482
|
+
# (`""`).
|
483
|
+
#
|
476
484
|
# @option params [String] :recording_configuration_arn
|
477
485
|
# Recording-configuration ARN. Default: "" (empty string, recording is
|
478
486
|
# disabled).
|
@@ -490,9 +498,19 @@ module Aws::IVS
|
|
490
498
|
#
|
491
499
|
# @option params [String] :type
|
492
500
|
# Channel type, which determines the allowable resolution and bitrate.
|
493
|
-
# *If you exceed the allowable resolution or bitrate, the stream
|
494
|
-
# probably will disconnect immediately.*
|
495
|
-
#
|
501
|
+
# *If you exceed the allowable input resolution or bitrate, the stream
|
502
|
+
# probably will disconnect immediately.* Some types generate multiple
|
503
|
+
# qualities (renditions) from the original input; this automatically
|
504
|
+
# gives viewers the best experience for their devices and network
|
505
|
+
# conditions. Some types provide transcoded video; transcoding allows
|
506
|
+
# higher playback quality across a range of download speeds. Default:
|
507
|
+
# `STANDARD`. Valid values:
|
508
|
+
#
|
509
|
+
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original input
|
510
|
+
# quality to viewers. The viewer’s video-quality choice is limited to
|
511
|
+
# the original input. Input resolution can be up to 1080p and bitrate
|
512
|
+
# can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
|
513
|
+
# between 480p and 1080p. Original audio is passed through.
|
496
514
|
#
|
497
515
|
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
498
516
|
# from the original input, to automatically give viewers the best
|
@@ -500,13 +518,36 @@ module Aws::IVS
|
|
500
518
|
# allows higher playback quality across a range of download speeds.
|
501
519
|
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
502
520
|
# Audio is transcoded only for renditions 360p and below; above that,
|
503
|
-
# audio is passed through. This is the default
|
521
|
+
# audio is passed through. This is the default when you create a
|
522
|
+
# channel.
|
504
523
|
#
|
505
|
-
# * `
|
506
|
-
#
|
507
|
-
#
|
508
|
-
#
|
509
|
-
#
|
524
|
+
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are generated
|
525
|
+
# from the original input, to automatically give viewers the best
|
526
|
+
# experience for their devices and network conditions. Input
|
527
|
+
# resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
|
528
|
+
# output is capped at SD quality (480p). You can select an optional
|
529
|
+
# transcode preset (see below). Audio for all renditions is
|
530
|
+
# transcoded, and an audio-only rendition is available.
|
531
|
+
#
|
532
|
+
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are generated
|
533
|
+
# from the original input, to automatically give viewers the best
|
534
|
+
# experience for their devices and network conditions. Input
|
535
|
+
# resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
|
536
|
+
# output is capped at HD quality (720p). You can select an optional
|
537
|
+
# transcode preset (see below). Audio for all renditions is
|
538
|
+
# transcoded, and an audio-only rendition is available.
|
539
|
+
#
|
540
|
+
# Optional *transcode presets* (available for the `ADVANCED` types)
|
541
|
+
# allow you to trade off available download bandwidth and video quality,
|
542
|
+
# to optimize the viewing experience. There are two presets:
|
543
|
+
#
|
544
|
+
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
545
|
+
# quality level. Use it if you have low download bandwidth and/or
|
546
|
+
# simple video content (e.g., talking heads)
|
547
|
+
#
|
548
|
+
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
549
|
+
# level. Use it if you have high download bandwidth and/or complex
|
550
|
+
# video content (e.g., flashes and quick scene changes).
|
510
551
|
#
|
511
552
|
# @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
512
553
|
#
|
@@ -520,11 +561,12 @@ module Aws::IVS
|
|
520
561
|
# insecure_ingest: false,
|
521
562
|
# latency_mode: "NORMAL", # accepts NORMAL, LOW
|
522
563
|
# name: "ChannelName",
|
564
|
+
# preset: "HIGHER_BANDWIDTH_DELIVERY", # accepts HIGHER_BANDWIDTH_DELIVERY, CONSTRAINED_BANDWIDTH_DELIVERY
|
523
565
|
# recording_configuration_arn: "ChannelRecordingConfigurationArn",
|
524
566
|
# tags: {
|
525
567
|
# "TagKey" => "TagValue",
|
526
568
|
# },
|
527
|
-
# type: "BASIC", # accepts BASIC, STANDARD
|
569
|
+
# type: "BASIC", # accepts BASIC, STANDARD, ADVANCED_SD, ADVANCED_HD
|
528
570
|
# })
|
529
571
|
#
|
530
572
|
# @example Response structure
|
@@ -536,10 +578,11 @@ module Aws::IVS
|
|
536
578
|
# resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
537
579
|
# resp.channel.name #=> String
|
538
580
|
# resp.channel.playback_url #=> String
|
581
|
+
# resp.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
539
582
|
# resp.channel.recording_configuration_arn #=> String
|
540
583
|
# resp.channel.tags #=> Hash
|
541
584
|
# resp.channel.tags["TagKey"] #=> String
|
542
|
-
# resp.channel.type #=> String, one of "BASIC", "STANDARD"
|
585
|
+
# resp.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
543
586
|
# resp.stream_key.arn #=> String
|
544
587
|
# resp.stream_key.channel_arn #=> String
|
545
588
|
# resp.stream_key.tags #=> Hash
|
@@ -833,10 +876,11 @@ module Aws::IVS
|
|
833
876
|
# resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
834
877
|
# resp.channel.name #=> String
|
835
878
|
# resp.channel.playback_url #=> String
|
879
|
+
# resp.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
836
880
|
# resp.channel.recording_configuration_arn #=> String
|
837
881
|
# resp.channel.tags #=> Hash
|
838
882
|
# resp.channel.tags["TagKey"] #=> String
|
839
|
-
# resp.channel.type #=> String, one of "BASIC", "STANDARD"
|
883
|
+
# resp.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
840
884
|
#
|
841
885
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/GetChannel AWS API Documentation
|
842
886
|
#
|
@@ -1020,10 +1064,11 @@ module Aws::IVS
|
|
1020
1064
|
# resp.stream_session.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
1021
1065
|
# resp.stream_session.channel.name #=> String
|
1022
1066
|
# resp.stream_session.channel.playback_url #=> String
|
1067
|
+
# resp.stream_session.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
1023
1068
|
# resp.stream_session.channel.recording_configuration_arn #=> String
|
1024
1069
|
# resp.stream_session.channel.tags #=> Hash
|
1025
1070
|
# resp.stream_session.channel.tags["TagKey"] #=> String
|
1026
|
-
# resp.stream_session.channel.type #=> String, one of "BASIC", "STANDARD"
|
1071
|
+
# resp.stream_session.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
1027
1072
|
# resp.stream_session.end_time #=> Time
|
1028
1073
|
# resp.stream_session.ingest_configuration.audio.channels #=> Integer
|
1029
1074
|
# resp.stream_session.ingest_configuration.audio.codec #=> String
|
@@ -1165,9 +1210,11 @@ module Aws::IVS
|
|
1165
1210
|
# resp.channels[0].insecure_ingest #=> Boolean
|
1166
1211
|
# resp.channels[0].latency_mode #=> String, one of "NORMAL", "LOW"
|
1167
1212
|
# resp.channels[0].name #=> String
|
1213
|
+
# resp.channels[0].preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
1168
1214
|
# resp.channels[0].recording_configuration_arn #=> String
|
1169
1215
|
# resp.channels[0].tags #=> Hash
|
1170
1216
|
# resp.channels[0].tags["TagKey"] #=> String
|
1217
|
+
# resp.channels[0].type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
1171
1218
|
# resp.next_token #=> String
|
1172
1219
|
#
|
1173
1220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ListChannels AWS API Documentation
|
@@ -1582,9 +1629,9 @@ module Aws::IVS
|
|
1582
1629
|
req.send_request(options)
|
1583
1630
|
end
|
1584
1631
|
|
1585
|
-
# Updates a channel's configuration.
|
1586
|
-
#
|
1587
|
-
# changes to take effect.
|
1632
|
+
# Updates a channel's configuration. Live channels cannot be updated.
|
1633
|
+
# You must stop the ongoing stream, update the channel, and restart the
|
1634
|
+
# stream for the changes to take effect.
|
1588
1635
|
#
|
1589
1636
|
# @option params [required, String] :arn
|
1590
1637
|
# ARN of the channel to be updated.
|
@@ -1604,6 +1651,13 @@ module Aws::IVS
|
|
1604
1651
|
# @option params [String] :name
|
1605
1652
|
# Channel name.
|
1606
1653
|
#
|
1654
|
+
# @option params [String] :preset
|
1655
|
+
# Optional transcode preset for the channel. This is selectable only for
|
1656
|
+
# `ADVANCED_HD` and `ADVANCED_SD` channel types. For those channel
|
1657
|
+
# types, the default `preset` is `HIGHER_BANDWIDTH_DELIVERY`. For other
|
1658
|
+
# channel types (`BASIC` and `STANDARD`), `preset` is the empty string
|
1659
|
+
# (`""`).
|
1660
|
+
#
|
1607
1661
|
# @option params [String] :recording_configuration_arn
|
1608
1662
|
# Recording-configuration ARN. If this is set to an empty string,
|
1609
1663
|
# recording is disabled. A value other than an empty string indicates
|
@@ -1611,8 +1665,19 @@ module Aws::IVS
|
|
1611
1665
|
#
|
1612
1666
|
# @option params [String] :type
|
1613
1667
|
# Channel type, which determines the allowable resolution and bitrate.
|
1614
|
-
# *If you exceed the allowable resolution or bitrate, the stream
|
1615
|
-
# probably will disconnect immediately
|
1668
|
+
# *If you exceed the allowable input resolution or bitrate, the stream
|
1669
|
+
# probably will disconnect immediately.* Some types generate multiple
|
1670
|
+
# qualities (renditions) from the original input; this automatically
|
1671
|
+
# gives viewers the best experience for their devices and network
|
1672
|
+
# conditions. Some types provide transcoded video; transcoding allows
|
1673
|
+
# higher playback quality across a range of download speeds. Default:
|
1674
|
+
# `STANDARD`. Valid values:
|
1675
|
+
#
|
1676
|
+
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original input
|
1677
|
+
# quality to viewers. The viewer’s video-quality choice is limited to
|
1678
|
+
# the original input. Input resolution can be up to 1080p and bitrate
|
1679
|
+
# can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
|
1680
|
+
# between 480p and 1080p. Original audio is passed through.
|
1616
1681
|
#
|
1617
1682
|
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
1618
1683
|
# from the original input, to automatically give viewers the best
|
@@ -1620,13 +1685,36 @@ module Aws::IVS
|
|
1620
1685
|
# allows higher playback quality across a range of download speeds.
|
1621
1686
|
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
1622
1687
|
# Audio is transcoded only for renditions 360p and below; above that,
|
1623
|
-
# audio is passed through. This is the default
|
1688
|
+
# audio is passed through. This is the default when you create a
|
1689
|
+
# channel.
|
1624
1690
|
#
|
1625
|
-
# * `
|
1626
|
-
#
|
1627
|
-
#
|
1628
|
-
#
|
1629
|
-
#
|
1691
|
+
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are generated
|
1692
|
+
# from the original input, to automatically give viewers the best
|
1693
|
+
# experience for their devices and network conditions. Input
|
1694
|
+
# resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
|
1695
|
+
# output is capped at SD quality (480p). You can select an optional
|
1696
|
+
# transcode preset (see below). Audio for all renditions is
|
1697
|
+
# transcoded, and an audio-only rendition is available.
|
1698
|
+
#
|
1699
|
+
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are generated
|
1700
|
+
# from the original input, to automatically give viewers the best
|
1701
|
+
# experience for their devices and network conditions. Input
|
1702
|
+
# resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
|
1703
|
+
# output is capped at HD quality (720p). You can select an optional
|
1704
|
+
# transcode preset (see below). Audio for all renditions is
|
1705
|
+
# transcoded, and an audio-only rendition is available.
|
1706
|
+
#
|
1707
|
+
# Optional *transcode presets* (available for the `ADVANCED` types)
|
1708
|
+
# allow you to trade off available download bandwidth and video quality,
|
1709
|
+
# to optimize the viewing experience. There are two presets:
|
1710
|
+
#
|
1711
|
+
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
1712
|
+
# quality level. Use it if you have low download bandwidth and/or
|
1713
|
+
# simple video content (e.g., talking heads)
|
1714
|
+
#
|
1715
|
+
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
1716
|
+
# level. Use it if you have high download bandwidth and/or complex
|
1717
|
+
# video content (e.g., flashes and quick scene changes).
|
1630
1718
|
#
|
1631
1719
|
# @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1632
1720
|
#
|
@@ -1640,8 +1728,9 @@ module Aws::IVS
|
|
1640
1728
|
# insecure_ingest: false,
|
1641
1729
|
# latency_mode: "NORMAL", # accepts NORMAL, LOW
|
1642
1730
|
# name: "ChannelName",
|
1731
|
+
# preset: "HIGHER_BANDWIDTH_DELIVERY", # accepts HIGHER_BANDWIDTH_DELIVERY, CONSTRAINED_BANDWIDTH_DELIVERY
|
1643
1732
|
# recording_configuration_arn: "ChannelRecordingConfigurationArn",
|
1644
|
-
# type: "BASIC", # accepts BASIC, STANDARD
|
1733
|
+
# type: "BASIC", # accepts BASIC, STANDARD, ADVANCED_SD, ADVANCED_HD
|
1645
1734
|
# })
|
1646
1735
|
#
|
1647
1736
|
# @example Response structure
|
@@ -1653,10 +1742,11 @@ module Aws::IVS
|
|
1653
1742
|
# resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
1654
1743
|
# resp.channel.name #=> String
|
1655
1744
|
# resp.channel.playback_url #=> String
|
1745
|
+
# resp.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
1656
1746
|
# resp.channel.recording_configuration_arn #=> String
|
1657
1747
|
# resp.channel.tags #=> Hash
|
1658
1748
|
# resp.channel.tags["TagKey"] #=> String
|
1659
|
-
# resp.channel.type #=> String, one of "BASIC", "STANDARD"
|
1749
|
+
# resp.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
1660
1750
|
#
|
1661
1751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/UpdateChannel AWS API Documentation
|
1662
1752
|
#
|
@@ -1680,7 +1770,7 @@ module Aws::IVS
|
|
1680
1770
|
params: params,
|
1681
1771
|
config: config)
|
1682
1772
|
context[:gem_name] = 'aws-sdk-ivs'
|
1683
|
-
context[:gem_version] = '1.
|
1773
|
+
context[:gem_version] = '1.32.0'
|
1684
1774
|
Seahorse::Client::Request.new(handlers, context)
|
1685
1775
|
end
|
1686
1776
|
|
@@ -145,6 +145,7 @@ module Aws::IVS
|
|
145
145
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
146
146
|
ThumbnailConfiguration = Shapes::StructureShape.new(name: 'ThumbnailConfiguration')
|
147
147
|
Time = Shapes::TimestampShape.new(name: 'Time', timestampFormat: "iso8601")
|
148
|
+
TranscodePreset = Shapes::StringShape.new(name: 'TranscodePreset')
|
148
149
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
149
150
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
150
151
|
UpdateChannelRequest = Shapes::StructureShape.new(name: 'UpdateChannelRequest')
|
@@ -191,6 +192,7 @@ module Aws::IVS
|
|
191
192
|
Channel.add_member(:latency_mode, Shapes::ShapeRef.new(shape: ChannelLatencyMode, location_name: "latencyMode"))
|
192
193
|
Channel.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, location_name: "name"))
|
193
194
|
Channel.add_member(:playback_url, Shapes::ShapeRef.new(shape: PlaybackURL, location_name: "playbackUrl"))
|
195
|
+
Channel.add_member(:preset, Shapes::ShapeRef.new(shape: TranscodePreset, location_name: "preset"))
|
194
196
|
Channel.add_member(:recording_configuration_arn, Shapes::ShapeRef.new(shape: ChannelRecordingConfigurationArn, location_name: "recordingConfigurationArn"))
|
195
197
|
Channel.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
196
198
|
Channel.add_member(:type, Shapes::ShapeRef.new(shape: ChannelType, location_name: "type"))
|
@@ -208,8 +210,10 @@ module Aws::IVS
|
|
208
210
|
ChannelSummary.add_member(:insecure_ingest, Shapes::ShapeRef.new(shape: InsecureIngest, location_name: "insecureIngest"))
|
209
211
|
ChannelSummary.add_member(:latency_mode, Shapes::ShapeRef.new(shape: ChannelLatencyMode, location_name: "latencyMode"))
|
210
212
|
ChannelSummary.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, location_name: "name"))
|
213
|
+
ChannelSummary.add_member(:preset, Shapes::ShapeRef.new(shape: TranscodePreset, location_name: "preset"))
|
211
214
|
ChannelSummary.add_member(:recording_configuration_arn, Shapes::ShapeRef.new(shape: ChannelRecordingConfigurationArn, location_name: "recordingConfigurationArn"))
|
212
215
|
ChannelSummary.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
216
|
+
ChannelSummary.add_member(:type, Shapes::ShapeRef.new(shape: ChannelType, location_name: "type"))
|
213
217
|
ChannelSummary.struct_class = Types::ChannelSummary
|
214
218
|
|
215
219
|
Channels.member = Shapes::ShapeRef.new(shape: Channel)
|
@@ -221,6 +225,7 @@ module Aws::IVS
|
|
221
225
|
CreateChannelRequest.add_member(:insecure_ingest, Shapes::ShapeRef.new(shape: Boolean, location_name: "insecureIngest"))
|
222
226
|
CreateChannelRequest.add_member(:latency_mode, Shapes::ShapeRef.new(shape: ChannelLatencyMode, location_name: "latencyMode"))
|
223
227
|
CreateChannelRequest.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, location_name: "name"))
|
228
|
+
CreateChannelRequest.add_member(:preset, Shapes::ShapeRef.new(shape: TranscodePreset, location_name: "preset"))
|
224
229
|
CreateChannelRequest.add_member(:recording_configuration_arn, Shapes::ShapeRef.new(shape: ChannelRecordingConfigurationArn, location_name: "recordingConfigurationArn"))
|
225
230
|
CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
226
231
|
CreateChannelRequest.add_member(:type, Shapes::ShapeRef.new(shape: ChannelType, location_name: "type"))
|
@@ -522,6 +527,7 @@ module Aws::IVS
|
|
522
527
|
UpdateChannelRequest.add_member(:insecure_ingest, Shapes::ShapeRef.new(shape: Boolean, location_name: "insecureIngest"))
|
523
528
|
UpdateChannelRequest.add_member(:latency_mode, Shapes::ShapeRef.new(shape: ChannelLatencyMode, location_name: "latencyMode"))
|
524
529
|
UpdateChannelRequest.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, location_name: "name"))
|
530
|
+
UpdateChannelRequest.add_member(:preset, Shapes::ShapeRef.new(shape: TranscodePreset, location_name: "preset"))
|
525
531
|
UpdateChannelRequest.add_member(:recording_configuration_arn, Shapes::ShapeRef.new(shape: ChannelRecordingConfigurationArn, location_name: "recordingConfigurationArn"))
|
526
532
|
UpdateChannelRequest.add_member(:type, Shapes::ShapeRef.new(shape: ChannelType, location_name: "type"))
|
527
533
|
UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
|
data/lib/aws-sdk-ivs/types.rb
CHANGED
@@ -168,6 +168,14 @@ module Aws::IVS
|
|
168
168
|
# Channel playback URL.
|
169
169
|
# @return [String]
|
170
170
|
#
|
171
|
+
# @!attribute [rw] preset
|
172
|
+
# Optional transcode preset for the channel. This is selectable only
|
173
|
+
# for `ADVANCED_HD` and `ADVANCED_SD` channel types. For those channel
|
174
|
+
# types, the default `preset` is `HIGHER_BANDWIDTH_DELIVERY`. For
|
175
|
+
# other channel types (`BASIC` and `STANDARD`), `preset` is the empty
|
176
|
+
# string (`""`).
|
177
|
+
# @return [String]
|
178
|
+
#
|
171
179
|
# @!attribute [rw] recording_configuration_arn
|
172
180
|
# Recording-configuration ARN. A value other than an empty string
|
173
181
|
# indicates that recording is enabled. Default: "" (empty string,
|
@@ -188,9 +196,20 @@ module Aws::IVS
|
|
188
196
|
#
|
189
197
|
# @!attribute [rw] type
|
190
198
|
# Channel type, which determines the allowable resolution and bitrate.
|
191
|
-
# *If you exceed the allowable resolution or bitrate, the stream
|
192
|
-
# probably will disconnect immediately.*
|
193
|
-
#
|
199
|
+
# *If you exceed the allowable input resolution or bitrate, the stream
|
200
|
+
# probably will disconnect immediately.* Some types generate multiple
|
201
|
+
# qualities (renditions) from the original input; this automatically
|
202
|
+
# gives viewers the best experience for their devices and network
|
203
|
+
# conditions. Some types provide transcoded video; transcoding allows
|
204
|
+
# higher playback quality across a range of download speeds. Default:
|
205
|
+
# `STANDARD`. Valid values:
|
206
|
+
#
|
207
|
+
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
|
208
|
+
# input quality to viewers. The viewer’s video-quality choice is
|
209
|
+
# limited to the original input. Input resolution can be up to 1080p
|
210
|
+
# and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
|
211
|
+
# resolutions between 480p and 1080p. Original audio is passed
|
212
|
+
# through.
|
194
213
|
#
|
195
214
|
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
196
215
|
# from the original input, to automatically give viewers the best
|
@@ -198,13 +217,36 @@ module Aws::IVS
|
|
198
217
|
# allows higher playback quality across a range of download speeds.
|
199
218
|
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
200
219
|
# Audio is transcoded only for renditions 360p and below; above
|
201
|
-
# that, audio is passed through. This is the default
|
202
|
-
#
|
203
|
-
#
|
204
|
-
#
|
205
|
-
# the original input
|
206
|
-
#
|
207
|
-
#
|
220
|
+
# that, audio is passed through. This is the default when you create
|
221
|
+
# a channel.
|
222
|
+
#
|
223
|
+
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are
|
224
|
+
# generated from the original input, to automatically give viewers
|
225
|
+
# the best experience for their devices and network conditions.
|
226
|
+
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
227
|
+
# Mbps; output is capped at SD quality (480p). You can select an
|
228
|
+
# optional transcode preset (see below). Audio for all renditions is
|
229
|
+
# transcoded, and an audio-only rendition is available.
|
230
|
+
#
|
231
|
+
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are
|
232
|
+
# generated from the original input, to automatically give viewers
|
233
|
+
# the best experience for their devices and network conditions.
|
234
|
+
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
235
|
+
# Mbps; output is capped at HD quality (720p). You can select an
|
236
|
+
# optional transcode preset (see below). Audio for all renditions is
|
237
|
+
# transcoded, and an audio-only rendition is available.
|
238
|
+
#
|
239
|
+
# Optional *transcode presets* (available for the `ADVANCED` types)
|
240
|
+
# allow you to trade off available download bandwidth and video
|
241
|
+
# quality, to optimize the viewing experience. There are two presets:
|
242
|
+
#
|
243
|
+
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
244
|
+
# quality level. Use it if you have low download bandwidth and/or
|
245
|
+
# simple video content (e.g., talking heads)
|
246
|
+
#
|
247
|
+
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
248
|
+
# level. Use it if you have high download bandwidth and/or complex
|
249
|
+
# video content (e.g., flashes and quick scene changes).
|
208
250
|
# @return [String]
|
209
251
|
#
|
210
252
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/Channel AWS API Documentation
|
@@ -217,6 +259,7 @@ module Aws::IVS
|
|
217
259
|
:latency_mode,
|
218
260
|
:name,
|
219
261
|
:playback_url,
|
262
|
+
:preset,
|
220
263
|
:recording_configuration_arn,
|
221
264
|
:tags,
|
222
265
|
:type)
|
@@ -262,6 +305,14 @@ module Aws::IVS
|
|
262
305
|
# Channel name.
|
263
306
|
# @return [String]
|
264
307
|
#
|
308
|
+
# @!attribute [rw] preset
|
309
|
+
# Optional transcode preset for the channel. This is selectable only
|
310
|
+
# for `ADVANCED_HD` and `ADVANCED_SD` channel types. For those channel
|
311
|
+
# types, the default `preset` is `HIGHER_BANDWIDTH_DELIVERY`. For
|
312
|
+
# other channel types (`BASIC` and `STANDARD`), `preset` is the empty
|
313
|
+
# string (`""`).
|
314
|
+
# @return [String]
|
315
|
+
#
|
265
316
|
# @!attribute [rw] recording_configuration_arn
|
266
317
|
# Recording-configuration ARN. A value other than an empty string
|
267
318
|
# indicates that recording is enabled. Default: "" (empty string,
|
@@ -280,6 +331,61 @@ module Aws::IVS
|
|
280
331
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
281
332
|
# @return [Hash<String,String>]
|
282
333
|
#
|
334
|
+
# @!attribute [rw] type
|
335
|
+
# Channel type, which determines the allowable resolution and bitrate.
|
336
|
+
# *If you exceed the allowable input resolution or bitrate, the stream
|
337
|
+
# probably will disconnect immediately.* Some types generate multiple
|
338
|
+
# qualities (renditions) from the original input; this automatically
|
339
|
+
# gives viewers the best experience for their devices and network
|
340
|
+
# conditions. Some types provide transcoded video; transcoding allows
|
341
|
+
# higher playback quality across a range of download speeds. Default:
|
342
|
+
# `STANDARD`. Valid values:
|
343
|
+
#
|
344
|
+
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
|
345
|
+
# input quality to viewers. The viewer’s video-quality choice is
|
346
|
+
# limited to the original input. Input resolution can be up to 1080p
|
347
|
+
# and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
|
348
|
+
# resolutions between 480p and 1080p. Original audio is passed
|
349
|
+
# through.
|
350
|
+
#
|
351
|
+
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
352
|
+
# from the original input, to automatically give viewers the best
|
353
|
+
# experience for their devices and network conditions. Transcoding
|
354
|
+
# allows higher playback quality across a range of download speeds.
|
355
|
+
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
356
|
+
# Audio is transcoded only for renditions 360p and below; above
|
357
|
+
# that, audio is passed through. This is the default when you create
|
358
|
+
# a channel.
|
359
|
+
#
|
360
|
+
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are
|
361
|
+
# generated from the original input, to automatically give viewers
|
362
|
+
# the best experience for their devices and network conditions.
|
363
|
+
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
364
|
+
# Mbps; output is capped at SD quality (480p). You can select an
|
365
|
+
# optional transcode preset (see below). Audio for all renditions is
|
366
|
+
# transcoded, and an audio-only rendition is available.
|
367
|
+
#
|
368
|
+
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are
|
369
|
+
# generated from the original input, to automatically give viewers
|
370
|
+
# the best experience for their devices and network conditions.
|
371
|
+
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
372
|
+
# Mbps; output is capped at HD quality (720p). You can select an
|
373
|
+
# optional transcode preset (see below). Audio for all renditions is
|
374
|
+
# transcoded, and an audio-only rendition is available.
|
375
|
+
#
|
376
|
+
# Optional *transcode presets* (available for the `ADVANCED` types)
|
377
|
+
# allow you to trade off available download bandwidth and video
|
378
|
+
# quality, to optimize the viewing experience. There are two presets:
|
379
|
+
#
|
380
|
+
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
381
|
+
# quality level. Use it if you have low download bandwidth and/or
|
382
|
+
# simple video content (e.g., talking heads)
|
383
|
+
#
|
384
|
+
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
385
|
+
# level. Use it if you have high download bandwidth and/or complex
|
386
|
+
# video content (e.g., flashes and quick scene changes).
|
387
|
+
# @return [String]
|
388
|
+
#
|
283
389
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ChannelSummary AWS API Documentation
|
284
390
|
#
|
285
391
|
class ChannelSummary < Struct.new(
|
@@ -288,8 +394,10 @@ module Aws::IVS
|
|
288
394
|
:insecure_ingest,
|
289
395
|
:latency_mode,
|
290
396
|
:name,
|
397
|
+
:preset,
|
291
398
|
:recording_configuration_arn,
|
292
|
-
:tags
|
399
|
+
:tags,
|
400
|
+
:type)
|
293
401
|
SENSITIVE = []
|
294
402
|
include Aws::Structure
|
295
403
|
end
|
@@ -326,6 +434,14 @@ module Aws::IVS
|
|
326
434
|
# Channel name.
|
327
435
|
# @return [String]
|
328
436
|
#
|
437
|
+
# @!attribute [rw] preset
|
438
|
+
# Optional transcode preset for the channel. This is selectable only
|
439
|
+
# for `ADVANCED_HD` and `ADVANCED_SD` channel types. For those channel
|
440
|
+
# types, the default `preset` is `HIGHER_BANDWIDTH_DELIVERY`. For
|
441
|
+
# other channel types (`BASIC` and `STANDARD`), `preset` is the empty
|
442
|
+
# string (`""`).
|
443
|
+
# @return [String]
|
444
|
+
#
|
329
445
|
# @!attribute [rw] recording_configuration_arn
|
330
446
|
# Recording-configuration ARN. Default: "" (empty string, recording
|
331
447
|
# is disabled).
|
@@ -345,9 +461,20 @@ module Aws::IVS
|
|
345
461
|
#
|
346
462
|
# @!attribute [rw] type
|
347
463
|
# Channel type, which determines the allowable resolution and bitrate.
|
348
|
-
# *If you exceed the allowable resolution or bitrate, the stream
|
349
|
-
# probably will disconnect immediately.*
|
350
|
-
#
|
464
|
+
# *If you exceed the allowable input resolution or bitrate, the stream
|
465
|
+
# probably will disconnect immediately.* Some types generate multiple
|
466
|
+
# qualities (renditions) from the original input; this automatically
|
467
|
+
# gives viewers the best experience for their devices and network
|
468
|
+
# conditions. Some types provide transcoded video; transcoding allows
|
469
|
+
# higher playback quality across a range of download speeds. Default:
|
470
|
+
# `STANDARD`. Valid values:
|
471
|
+
#
|
472
|
+
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
|
473
|
+
# input quality to viewers. The viewer’s video-quality choice is
|
474
|
+
# limited to the original input. Input resolution can be up to 1080p
|
475
|
+
# and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
|
476
|
+
# resolutions between 480p and 1080p. Original audio is passed
|
477
|
+
# through.
|
351
478
|
#
|
352
479
|
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
353
480
|
# from the original input, to automatically give viewers the best
|
@@ -355,13 +482,36 @@ module Aws::IVS
|
|
355
482
|
# allows higher playback quality across a range of download speeds.
|
356
483
|
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
357
484
|
# Audio is transcoded only for renditions 360p and below; above
|
358
|
-
# that, audio is passed through. This is the default
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
# the original input
|
363
|
-
#
|
364
|
-
#
|
485
|
+
# that, audio is passed through. This is the default when you create
|
486
|
+
# a channel.
|
487
|
+
#
|
488
|
+
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are
|
489
|
+
# generated from the original input, to automatically give viewers
|
490
|
+
# the best experience for their devices and network conditions.
|
491
|
+
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
492
|
+
# Mbps; output is capped at SD quality (480p). You can select an
|
493
|
+
# optional transcode preset (see below). Audio for all renditions is
|
494
|
+
# transcoded, and an audio-only rendition is available.
|
495
|
+
#
|
496
|
+
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are
|
497
|
+
# generated from the original input, to automatically give viewers
|
498
|
+
# the best experience for their devices and network conditions.
|
499
|
+
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
500
|
+
# Mbps; output is capped at HD quality (720p). You can select an
|
501
|
+
# optional transcode preset (see below). Audio for all renditions is
|
502
|
+
# transcoded, and an audio-only rendition is available.
|
503
|
+
#
|
504
|
+
# Optional *transcode presets* (available for the `ADVANCED` types)
|
505
|
+
# allow you to trade off available download bandwidth and video
|
506
|
+
# quality, to optimize the viewing experience. There are two presets:
|
507
|
+
#
|
508
|
+
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
509
|
+
# quality level. Use it if you have low download bandwidth and/or
|
510
|
+
# simple video content (e.g., talking heads)
|
511
|
+
#
|
512
|
+
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
513
|
+
# level. Use it if you have high download bandwidth and/or complex
|
514
|
+
# video content (e.g., flashes and quick scene changes).
|
365
515
|
# @return [String]
|
366
516
|
#
|
367
517
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateChannelRequest AWS API Documentation
|
@@ -371,6 +521,7 @@ module Aws::IVS
|
|
371
521
|
:insecure_ingest,
|
372
522
|
:latency_mode,
|
373
523
|
:name,
|
524
|
+
:preset,
|
374
525
|
:recording_configuration_arn,
|
375
526
|
:tags,
|
376
527
|
:type)
|
@@ -1759,6 +1910,14 @@ module Aws::IVS
|
|
1759
1910
|
# Channel name.
|
1760
1911
|
# @return [String]
|
1761
1912
|
#
|
1913
|
+
# @!attribute [rw] preset
|
1914
|
+
# Optional transcode preset for the channel. This is selectable only
|
1915
|
+
# for `ADVANCED_HD` and `ADVANCED_SD` channel types. For those channel
|
1916
|
+
# types, the default `preset` is `HIGHER_BANDWIDTH_DELIVERY`. For
|
1917
|
+
# other channel types (`BASIC` and `STANDARD`), `preset` is the empty
|
1918
|
+
# string (`""`).
|
1919
|
+
# @return [String]
|
1920
|
+
#
|
1762
1921
|
# @!attribute [rw] recording_configuration_arn
|
1763
1922
|
# Recording-configuration ARN. If this is set to an empty string,
|
1764
1923
|
# recording is disabled. A value other than an empty string indicates
|
@@ -1767,8 +1926,20 @@ module Aws::IVS
|
|
1767
1926
|
#
|
1768
1927
|
# @!attribute [rw] type
|
1769
1928
|
# Channel type, which determines the allowable resolution and bitrate.
|
1770
|
-
# *If you exceed the allowable resolution or bitrate, the stream
|
1771
|
-
# probably will disconnect immediately
|
1929
|
+
# *If you exceed the allowable input resolution or bitrate, the stream
|
1930
|
+
# probably will disconnect immediately.* Some types generate multiple
|
1931
|
+
# qualities (renditions) from the original input; this automatically
|
1932
|
+
# gives viewers the best experience for their devices and network
|
1933
|
+
# conditions. Some types provide transcoded video; transcoding allows
|
1934
|
+
# higher playback quality across a range of download speeds. Default:
|
1935
|
+
# `STANDARD`. Valid values:
|
1936
|
+
#
|
1937
|
+
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
|
1938
|
+
# input quality to viewers. The viewer’s video-quality choice is
|
1939
|
+
# limited to the original input. Input resolution can be up to 1080p
|
1940
|
+
# and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
|
1941
|
+
# resolutions between 480p and 1080p. Original audio is passed
|
1942
|
+
# through.
|
1772
1943
|
#
|
1773
1944
|
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
1774
1945
|
# from the original input, to automatically give viewers the best
|
@@ -1776,13 +1947,36 @@ module Aws::IVS
|
|
1776
1947
|
# allows higher playback quality across a range of download speeds.
|
1777
1948
|
# Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
|
1778
1949
|
# Audio is transcoded only for renditions 360p and below; above
|
1779
|
-
# that, audio is passed through. This is the default
|
1780
|
-
#
|
1781
|
-
#
|
1782
|
-
#
|
1783
|
-
# the original input
|
1784
|
-
#
|
1785
|
-
#
|
1950
|
+
# that, audio is passed through. This is the default when you create
|
1951
|
+
# a channel.
|
1952
|
+
#
|
1953
|
+
# * `ADVANCED_SD`: Video is transcoded; multiple qualities are
|
1954
|
+
# generated from the original input, to automatically give viewers
|
1955
|
+
# the best experience for their devices and network conditions.
|
1956
|
+
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
1957
|
+
# Mbps; output is capped at SD quality (480p). You can select an
|
1958
|
+
# optional transcode preset (see below). Audio for all renditions is
|
1959
|
+
# transcoded, and an audio-only rendition is available.
|
1960
|
+
#
|
1961
|
+
# * `ADVANCED_HD`: Video is transcoded; multiple qualities are
|
1962
|
+
# generated from the original input, to automatically give viewers
|
1963
|
+
# the best experience for their devices and network conditions.
|
1964
|
+
# Input resolution can be up to 1080p and bitrate can be up to 8.5
|
1965
|
+
# Mbps; output is capped at HD quality (720p). You can select an
|
1966
|
+
# optional transcode preset (see below). Audio for all renditions is
|
1967
|
+
# transcoded, and an audio-only rendition is available.
|
1968
|
+
#
|
1969
|
+
# Optional *transcode presets* (available for the `ADVANCED` types)
|
1970
|
+
# allow you to trade off available download bandwidth and video
|
1971
|
+
# quality, to optimize the viewing experience. There are two presets:
|
1972
|
+
#
|
1973
|
+
# * *Constrained bandwidth delivery* uses a lower bitrate for each
|
1974
|
+
# quality level. Use it if you have low download bandwidth and/or
|
1975
|
+
# simple video content (e.g., talking heads)
|
1976
|
+
#
|
1977
|
+
# * *Higher bandwidth delivery* uses a higher bitrate for each quality
|
1978
|
+
# level. Use it if you have high download bandwidth and/or complex
|
1979
|
+
# video content (e.g., flashes and quick scene changes).
|
1786
1980
|
# @return [String]
|
1787
1981
|
#
|
1788
1982
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/UpdateChannelRequest AWS API Documentation
|
@@ -1793,6 +1987,7 @@ module Aws::IVS
|
|
1793
1987
|
:insecure_ingest,
|
1794
1988
|
:latency_mode,
|
1795
1989
|
:name,
|
1990
|
+
:preset,
|
1796
1991
|
:recording_configuration_arn,
|
1797
1992
|
:type)
|
1798
1993
|
SENSITIVE = []
|
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.32.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-06-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|