aws-sdk-ivs 1.28.0 → 1.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivs/client.rb +27 -13
- data/lib/aws-sdk-ivs/client_api.rb +5 -0
- data/lib/aws-sdk-ivs/types.rb +26 -6
- 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: 3f58e5833fd61231356e13d416e505de83bb255c38309e6bc6ad847537c0a077
|
4
|
+
data.tar.gz: 31cb1c629fba5c81fc02e5f2f1079098b2fd0a0d502901edf4b7785b9171132e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34e8cd5bfbe36c2084de17286628a2a8f76ce7f2397e67ecdbf85e71e92cc157b9e1e405c143c32aaa7d6b3261c3034556db11321457255a6c8e7a124a62c542
|
7
|
+
data.tar.gz: 16894253733086df109ae7cb195780060f8fc42e0c2392dee15f134188fca031874c4cf433d3e15aa85af6234fa1f9954ae8c0dd44692405a43f890034916705
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.29.0 (2023-03-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon Interactive Video Service (IVS) now offers customers the ability to configure IVS channels to allow insecure RTMP ingest.
|
8
|
+
|
4
9
|
1.28.0 (2023-03-06)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.29.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
@@ -390,6 +390,7 @@ module Aws::IVS
|
|
390
390
|
# resp.channels[0].arn #=> String
|
391
391
|
# resp.channels[0].authorized #=> Boolean
|
392
392
|
# resp.channels[0].ingest_endpoint #=> String
|
393
|
+
# resp.channels[0].insecure_ingest #=> Boolean
|
393
394
|
# resp.channels[0].latency_mode #=> String, one of "NORMAL", "LOW"
|
394
395
|
# resp.channels[0].name #=> String
|
395
396
|
# resp.channels[0].playback_url #=> String
|
@@ -455,6 +456,9 @@ module Aws::IVS
|
|
455
456
|
# Whether the channel is private (enabled for playback authorization).
|
456
457
|
# Default: `false`.
|
457
458
|
#
|
459
|
+
# @option params [Boolean] :insecure_ingest
|
460
|
+
# Whether the channel allows insecure RTMP ingest. Default: `false`.
|
461
|
+
#
|
458
462
|
# @option params [String] :latency_mode
|
459
463
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live video
|
460
464
|
# up to Full HD. Use `LOW` for near-real-time interaction with viewers.
|
@@ -485,7 +489,7 @@ module Aws::IVS
|
|
485
489
|
# probably will disconnect immediately.* Default: `STANDARD`. Valid
|
486
490
|
# values:
|
487
491
|
#
|
488
|
-
# * `STANDARD
|
492
|
+
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
489
493
|
# from the original input, to automatically give viewers the best
|
490
494
|
# experience for their devices and network conditions. Transcoding
|
491
495
|
# allows higher playback quality across a range of download speeds.
|
@@ -493,11 +497,11 @@ module Aws::IVS
|
|
493
497
|
# Audio is transcoded only for renditions 360p and below; above that,
|
494
498
|
# audio is passed through. This is the default.
|
495
499
|
#
|
496
|
-
# * `BASIC
|
497
|
-
#
|
498
|
-
#
|
499
|
-
#
|
500
|
-
#
|
500
|
+
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original input
|
501
|
+
# to viewers. The viewer’s video-quality choice is limited to the
|
502
|
+
# original input. Resolution can be up to 1080p and bitrate can be up
|
503
|
+
# to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p
|
504
|
+
# and 1080p.
|
501
505
|
#
|
502
506
|
# @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
503
507
|
#
|
@@ -508,6 +512,7 @@ module Aws::IVS
|
|
508
512
|
#
|
509
513
|
# resp = client.create_channel({
|
510
514
|
# authorized: false,
|
515
|
+
# insecure_ingest: false,
|
511
516
|
# latency_mode: "NORMAL", # accepts NORMAL, LOW
|
512
517
|
# name: "ChannelName",
|
513
518
|
# recording_configuration_arn: "ChannelRecordingConfigurationArn",
|
@@ -522,6 +527,7 @@ module Aws::IVS
|
|
522
527
|
# resp.channel.arn #=> String
|
523
528
|
# resp.channel.authorized #=> Boolean
|
524
529
|
# resp.channel.ingest_endpoint #=> String
|
530
|
+
# resp.channel.insecure_ingest #=> Boolean
|
525
531
|
# resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
526
532
|
# resp.channel.name #=> String
|
527
533
|
# resp.channel.playback_url #=> String
|
@@ -818,6 +824,7 @@ module Aws::IVS
|
|
818
824
|
# resp.channel.arn #=> String
|
819
825
|
# resp.channel.authorized #=> Boolean
|
820
826
|
# resp.channel.ingest_endpoint #=> String
|
827
|
+
# resp.channel.insecure_ingest #=> Boolean
|
821
828
|
# resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
822
829
|
# resp.channel.name #=> String
|
823
830
|
# resp.channel.playback_url #=> String
|
@@ -1004,6 +1011,7 @@ module Aws::IVS
|
|
1004
1011
|
# resp.stream_session.channel.arn #=> String
|
1005
1012
|
# resp.stream_session.channel.authorized #=> Boolean
|
1006
1013
|
# resp.stream_session.channel.ingest_endpoint #=> String
|
1014
|
+
# resp.stream_session.channel.insecure_ingest #=> Boolean
|
1007
1015
|
# resp.stream_session.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
1008
1016
|
# resp.stream_session.channel.name #=> String
|
1009
1017
|
# resp.stream_session.channel.playback_url #=> String
|
@@ -1149,6 +1157,7 @@ module Aws::IVS
|
|
1149
1157
|
# resp.channels #=> Array
|
1150
1158
|
# resp.channels[0].arn #=> String
|
1151
1159
|
# resp.channels[0].authorized #=> Boolean
|
1160
|
+
# resp.channels[0].insecure_ingest #=> Boolean
|
1152
1161
|
# resp.channels[0].latency_mode #=> String, one of "NORMAL", "LOW"
|
1153
1162
|
# resp.channels[0].name #=> String
|
1154
1163
|
# resp.channels[0].recording_configuration_arn #=> String
|
@@ -1578,6 +1587,9 @@ module Aws::IVS
|
|
1578
1587
|
# @option params [Boolean] :authorized
|
1579
1588
|
# Whether the channel is private (enabled for playback authorization).
|
1580
1589
|
#
|
1590
|
+
# @option params [Boolean] :insecure_ingest
|
1591
|
+
# Whether the channel allows insecure RTMP ingest. Default: `false`.
|
1592
|
+
#
|
1581
1593
|
# @option params [String] :latency_mode
|
1582
1594
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live video
|
1583
1595
|
# up to Full HD. Use `LOW` for near-real-time interaction with viewers.
|
@@ -1597,7 +1609,7 @@ module Aws::IVS
|
|
1597
1609
|
# *If you exceed the allowable resolution or bitrate, the stream
|
1598
1610
|
# probably will disconnect immediately*. Valid values:
|
1599
1611
|
#
|
1600
|
-
# * `STANDARD
|
1612
|
+
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
1601
1613
|
# from the original input, to automatically give viewers the best
|
1602
1614
|
# experience for their devices and network conditions. Transcoding
|
1603
1615
|
# allows higher playback quality across a range of download speeds.
|
@@ -1605,11 +1617,11 @@ module Aws::IVS
|
|
1605
1617
|
# Audio is transcoded only for renditions 360p and below; above that,
|
1606
1618
|
# audio is passed through. This is the default.
|
1607
1619
|
#
|
1608
|
-
# * `BASIC
|
1609
|
-
#
|
1610
|
-
#
|
1611
|
-
#
|
1612
|
-
#
|
1620
|
+
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original input
|
1621
|
+
# to viewers. The viewer’s video-quality choice is limited to the
|
1622
|
+
# original input. Resolution can be up to 1080p and bitrate can be up
|
1623
|
+
# to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p
|
1624
|
+
# and 1080p.
|
1613
1625
|
#
|
1614
1626
|
# @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1615
1627
|
#
|
@@ -1620,6 +1632,7 @@ module Aws::IVS
|
|
1620
1632
|
# resp = client.update_channel({
|
1621
1633
|
# arn: "ChannelArn", # required
|
1622
1634
|
# authorized: false,
|
1635
|
+
# insecure_ingest: false,
|
1623
1636
|
# latency_mode: "NORMAL", # accepts NORMAL, LOW
|
1624
1637
|
# name: "ChannelName",
|
1625
1638
|
# recording_configuration_arn: "ChannelRecordingConfigurationArn",
|
@@ -1631,6 +1644,7 @@ module Aws::IVS
|
|
1631
1644
|
# resp.channel.arn #=> String
|
1632
1645
|
# resp.channel.authorized #=> Boolean
|
1633
1646
|
# resp.channel.ingest_endpoint #=> String
|
1647
|
+
# resp.channel.insecure_ingest #=> Boolean
|
1634
1648
|
# resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
1635
1649
|
# resp.channel.name #=> String
|
1636
1650
|
# resp.channel.playback_url #=> String
|
@@ -1661,7 +1675,7 @@ module Aws::IVS
|
|
1661
1675
|
params: params,
|
1662
1676
|
config: config)
|
1663
1677
|
context[:gem_name] = 'aws-sdk-ivs'
|
1664
|
-
context[:gem_version] = '1.
|
1678
|
+
context[:gem_version] = '1.29.0'
|
1665
1679
|
Seahorse::Client::Request.new(handlers, context)
|
1666
1680
|
end
|
1667
1681
|
|
@@ -62,6 +62,7 @@ module Aws::IVS
|
|
62
62
|
ImportPlaybackKeyPairResponse = Shapes::StructureShape.new(name: 'ImportPlaybackKeyPairResponse')
|
63
63
|
IngestConfiguration = Shapes::StructureShape.new(name: 'IngestConfiguration')
|
64
64
|
IngestEndpoint = Shapes::StringShape.new(name: 'IngestEndpoint')
|
65
|
+
InsecureIngest = Shapes::BooleanShape.new(name: 'InsecureIngest')
|
65
66
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
66
67
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
67
68
|
IsAuthorized = Shapes::BooleanShape.new(name: 'IsAuthorized')
|
@@ -186,6 +187,7 @@ module Aws::IVS
|
|
186
187
|
Channel.add_member(:arn, Shapes::ShapeRef.new(shape: ChannelArn, location_name: "arn"))
|
187
188
|
Channel.add_member(:authorized, Shapes::ShapeRef.new(shape: IsAuthorized, location_name: "authorized"))
|
188
189
|
Channel.add_member(:ingest_endpoint, Shapes::ShapeRef.new(shape: IngestEndpoint, location_name: "ingestEndpoint"))
|
190
|
+
Channel.add_member(:insecure_ingest, Shapes::ShapeRef.new(shape: InsecureIngest, location_name: "insecureIngest"))
|
189
191
|
Channel.add_member(:latency_mode, Shapes::ShapeRef.new(shape: ChannelLatencyMode, location_name: "latencyMode"))
|
190
192
|
Channel.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, location_name: "name"))
|
191
193
|
Channel.add_member(:playback_url, Shapes::ShapeRef.new(shape: PlaybackURL, location_name: "playbackUrl"))
|
@@ -203,6 +205,7 @@ module Aws::IVS
|
|
203
205
|
|
204
206
|
ChannelSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ChannelArn, location_name: "arn"))
|
205
207
|
ChannelSummary.add_member(:authorized, Shapes::ShapeRef.new(shape: IsAuthorized, location_name: "authorized"))
|
208
|
+
ChannelSummary.add_member(:insecure_ingest, Shapes::ShapeRef.new(shape: InsecureIngest, location_name: "insecureIngest"))
|
206
209
|
ChannelSummary.add_member(:latency_mode, Shapes::ShapeRef.new(shape: ChannelLatencyMode, location_name: "latencyMode"))
|
207
210
|
ChannelSummary.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, location_name: "name"))
|
208
211
|
ChannelSummary.add_member(:recording_configuration_arn, Shapes::ShapeRef.new(shape: ChannelRecordingConfigurationArn, location_name: "recordingConfigurationArn"))
|
@@ -215,6 +218,7 @@ module Aws::IVS
|
|
215
218
|
ConflictException.struct_class = Types::ConflictException
|
216
219
|
|
217
220
|
CreateChannelRequest.add_member(:authorized, Shapes::ShapeRef.new(shape: Boolean, location_name: "authorized"))
|
221
|
+
CreateChannelRequest.add_member(:insecure_ingest, Shapes::ShapeRef.new(shape: Boolean, location_name: "insecureIngest"))
|
218
222
|
CreateChannelRequest.add_member(:latency_mode, Shapes::ShapeRef.new(shape: ChannelLatencyMode, location_name: "latencyMode"))
|
219
223
|
CreateChannelRequest.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, location_name: "name"))
|
220
224
|
CreateChannelRequest.add_member(:recording_configuration_arn, Shapes::ShapeRef.new(shape: ChannelRecordingConfigurationArn, location_name: "recordingConfigurationArn"))
|
@@ -515,6 +519,7 @@ module Aws::IVS
|
|
515
519
|
|
516
520
|
UpdateChannelRequest.add_member(:arn, Shapes::ShapeRef.new(shape: ChannelArn, required: true, location_name: "arn"))
|
517
521
|
UpdateChannelRequest.add_member(:authorized, Shapes::ShapeRef.new(shape: Boolean, location_name: "authorized"))
|
522
|
+
UpdateChannelRequest.add_member(:insecure_ingest, Shapes::ShapeRef.new(shape: Boolean, location_name: "insecureIngest"))
|
518
523
|
UpdateChannelRequest.add_member(:latency_mode, Shapes::ShapeRef.new(shape: ChannelLatencyMode, location_name: "latencyMode"))
|
519
524
|
UpdateChannelRequest.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, location_name: "name"))
|
520
525
|
UpdateChannelRequest.add_member(:recording_configuration_arn, Shapes::ShapeRef.new(shape: ChannelRecordingConfigurationArn, location_name: "recordingConfigurationArn"))
|
data/lib/aws-sdk-ivs/types.rb
CHANGED
@@ -149,6 +149,10 @@ module Aws::IVS
|
|
149
149
|
# used when you set up streaming software.
|
150
150
|
# @return [String]
|
151
151
|
#
|
152
|
+
# @!attribute [rw] insecure_ingest
|
153
|
+
# Whether the channel allows insecure RTMP ingest. Default: `false`.
|
154
|
+
# @return [Boolean]
|
155
|
+
#
|
152
156
|
# @!attribute [rw] latency_mode
|
153
157
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live
|
154
158
|
# video up to Full HD. Use `LOW` for near-real-time interaction with
|
@@ -188,7 +192,7 @@ module Aws::IVS
|
|
188
192
|
# probably will disconnect immediately.* Default: `STANDARD`. Valid
|
189
193
|
# values:
|
190
194
|
#
|
191
|
-
# * `STANDARD
|
195
|
+
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
192
196
|
# from the original input, to automatically give viewers the best
|
193
197
|
# experience for their devices and network conditions. Transcoding
|
194
198
|
# allows higher playback quality across a range of download speeds.
|
@@ -196,7 +200,7 @@ module Aws::IVS
|
|
196
200
|
# Audio is transcoded only for renditions 360p and below; above
|
197
201
|
# that, audio is passed through. This is the default.
|
198
202
|
#
|
199
|
-
# * `BASIC
|
203
|
+
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
|
200
204
|
# input to viewers. The viewer’s video-quality choice is limited to
|
201
205
|
# the original input. Resolution can be up to 1080p and bitrate can
|
202
206
|
# be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
|
@@ -209,6 +213,7 @@ module Aws::IVS
|
|
209
213
|
:arn,
|
210
214
|
:authorized,
|
211
215
|
:ingest_endpoint,
|
216
|
+
:insecure_ingest,
|
212
217
|
:latency_mode,
|
213
218
|
:name,
|
214
219
|
:playback_url,
|
@@ -242,6 +247,10 @@ module Aws::IVS
|
|
242
247
|
# Default: `false`.
|
243
248
|
# @return [Boolean]
|
244
249
|
#
|
250
|
+
# @!attribute [rw] insecure_ingest
|
251
|
+
# Whether the channel allows insecure RTMP ingest. Default: `false`.
|
252
|
+
# @return [Boolean]
|
253
|
+
#
|
245
254
|
# @!attribute [rw] latency_mode
|
246
255
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live
|
247
256
|
# video up to Full HD. Use `LOW` for near-real-time interaction with
|
@@ -276,6 +285,7 @@ module Aws::IVS
|
|
276
285
|
class ChannelSummary < Struct.new(
|
277
286
|
:arn,
|
278
287
|
:authorized,
|
288
|
+
:insecure_ingest,
|
279
289
|
:latency_mode,
|
280
290
|
:name,
|
281
291
|
:recording_configuration_arn,
|
@@ -301,6 +311,10 @@ module Aws::IVS
|
|
301
311
|
# Default: `false`.
|
302
312
|
# @return [Boolean]
|
303
313
|
#
|
314
|
+
# @!attribute [rw] insecure_ingest
|
315
|
+
# Whether the channel allows insecure RTMP ingest. Default: `false`.
|
316
|
+
# @return [Boolean]
|
317
|
+
#
|
304
318
|
# @!attribute [rw] latency_mode
|
305
319
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live
|
306
320
|
# video up to Full HD. Use `LOW` for near-real-time interaction with
|
@@ -335,7 +349,7 @@ module Aws::IVS
|
|
335
349
|
# probably will disconnect immediately.* Default: `STANDARD`. Valid
|
336
350
|
# values:
|
337
351
|
#
|
338
|
-
# * `STANDARD
|
352
|
+
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
339
353
|
# from the original input, to automatically give viewers the best
|
340
354
|
# experience for their devices and network conditions. Transcoding
|
341
355
|
# allows higher playback quality across a range of download speeds.
|
@@ -343,7 +357,7 @@ module Aws::IVS
|
|
343
357
|
# Audio is transcoded only for renditions 360p and below; above
|
344
358
|
# that, audio is passed through. This is the default.
|
345
359
|
#
|
346
|
-
# * `BASIC
|
360
|
+
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
|
347
361
|
# input to viewers. The viewer’s video-quality choice is limited to
|
348
362
|
# the original input. Resolution can be up to 1080p and bitrate can
|
349
363
|
# be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
|
@@ -354,6 +368,7 @@ module Aws::IVS
|
|
354
368
|
#
|
355
369
|
class CreateChannelRequest < Struct.new(
|
356
370
|
:authorized,
|
371
|
+
:insecure_ingest,
|
357
372
|
:latency_mode,
|
358
373
|
:name,
|
359
374
|
:recording_configuration_arn,
|
@@ -1729,6 +1744,10 @@ module Aws::IVS
|
|
1729
1744
|
# Whether the channel is private (enabled for playback authorization).
|
1730
1745
|
# @return [Boolean]
|
1731
1746
|
#
|
1747
|
+
# @!attribute [rw] insecure_ingest
|
1748
|
+
# Whether the channel allows insecure RTMP ingest. Default: `false`.
|
1749
|
+
# @return [Boolean]
|
1750
|
+
#
|
1732
1751
|
# @!attribute [rw] latency_mode
|
1733
1752
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live
|
1734
1753
|
# video up to Full HD. Use `LOW` for near-real-time interaction with
|
@@ -1751,7 +1770,7 @@ module Aws::IVS
|
|
1751
1770
|
# *If you exceed the allowable resolution or bitrate, the stream
|
1752
1771
|
# probably will disconnect immediately*. Valid values:
|
1753
1772
|
#
|
1754
|
-
# * `STANDARD
|
1773
|
+
# * `STANDARD`: Video is transcoded: multiple qualities are generated
|
1755
1774
|
# from the original input, to automatically give viewers the best
|
1756
1775
|
# experience for their devices and network conditions. Transcoding
|
1757
1776
|
# allows higher playback quality across a range of download speeds.
|
@@ -1759,7 +1778,7 @@ module Aws::IVS
|
|
1759
1778
|
# Audio is transcoded only for renditions 360p and below; above
|
1760
1779
|
# that, audio is passed through. This is the default.
|
1761
1780
|
#
|
1762
|
-
# * `BASIC
|
1781
|
+
# * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
|
1763
1782
|
# input to viewers. The viewer’s video-quality choice is limited to
|
1764
1783
|
# the original input. Resolution can be up to 1080p and bitrate can
|
1765
1784
|
# be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
|
@@ -1771,6 +1790,7 @@ module Aws::IVS
|
|
1771
1790
|
class UpdateChannelRequest < Struct.new(
|
1772
1791
|
:arn,
|
1773
1792
|
:authorized,
|
1793
|
+
:insecure_ingest,
|
1774
1794
|
:latency_mode,
|
1775
1795
|
:name,
|
1776
1796
|
:recording_configuration_arn,
|
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.29.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-03-
|
11
|
+
date: 2023-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|