aws-sdk-ivs 1.28.0 → 1.30.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b975db435905d560bbdc3febf6546c952647abd70b101cbbf3a34f9fce854133
4
- data.tar.gz: 8b34611f45bbc0a58590f9fc0822fb0259d281aca60efa9208a13fff2f97e8e6
3
+ metadata.gz: 01af6c6a87f4ddf940c323c7f5221b0a41d8234106bfd2029903e0794df71a8e
4
+ data.tar.gz: 241f71ad9eb75b1e9a38c2a95b16b7c66ff3efda46dedd157cce4a2c76be8700
5
5
  SHA512:
6
- metadata.gz: 1a5c8ce171f0435ba671cdbd2c8002a4f5c7ee02104426b39d18bf3820e171b338090545078e0eb06d47490400bb9eac856ac63d4d4f51403b0a6f455ec7cea8
7
- data.tar.gz: babdadeaa4bc219b89b3c6b38d9a6f202c8a7c1368f0a174762089ba5f480f9815a37eb060a1a7b7d1c4c42ecc7c0130eadc7fa94a04769f9f02c18e6b6fe664
6
+ metadata.gz: e44caa9e98e1468cfb023928d7d48d0b5d24b9ddb29be6cc2dea32dde9298e76fc8a7f291b1d71da52f6b7f9892e06a492e11854dbb16eddbc1f1e08588f6838
7
+ data.tar.gz: 76a70414f6b1e703f607e512bf6703f052203fe357b96350d6a9871720f8dffac6fd13055054aea45f331497cc3c3bc049915babd531dfaf6e408bf99b9eeeee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.29.0 (2023-03-30)
10
+ ------------------
11
+
12
+ * Feature - Amazon Interactive Video Service (IVS) now offers customers the ability to configure IVS channels to allow insecure RTMP ingest.
13
+
4
14
  1.28.0 (2023-03-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.30.0
@@ -275,6 +275,11 @@ module Aws::IVS
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -390,6 +395,7 @@ module Aws::IVS
390
395
  # resp.channels[0].arn #=> String
391
396
  # resp.channels[0].authorized #=> Boolean
392
397
  # resp.channels[0].ingest_endpoint #=> String
398
+ # resp.channels[0].insecure_ingest #=> Boolean
393
399
  # resp.channels[0].latency_mode #=> String, one of "NORMAL", "LOW"
394
400
  # resp.channels[0].name #=> String
395
401
  # resp.channels[0].playback_url #=> String
@@ -455,6 +461,9 @@ module Aws::IVS
455
461
  # Whether the channel is private (enabled for playback authorization).
456
462
  # Default: `false`.
457
463
  #
464
+ # @option params [Boolean] :insecure_ingest
465
+ # Whether the channel allows insecure RTMP ingest. Default: `false`.
466
+ #
458
467
  # @option params [String] :latency_mode
459
468
  # Channel latency mode. Use `NORMAL` to broadcast and deliver live video
460
469
  # up to Full HD. Use `LOW` for near-real-time interaction with viewers.
@@ -485,7 +494,7 @@ module Aws::IVS
485
494
  # probably will disconnect immediately.* Default: `STANDARD`. Valid
486
495
  # values:
487
496
  #
488
- # * `STANDARD`\: Video is transcoded: multiple qualities are generated
497
+ # * `STANDARD`: Video is transcoded: multiple qualities are generated
489
498
  # from the original input, to automatically give viewers the best
490
499
  # experience for their devices and network conditions. Transcoding
491
500
  # allows higher playback quality across a range of download speeds.
@@ -493,11 +502,11 @@ module Aws::IVS
493
502
  # Audio is transcoded only for renditions 360p and below; above that,
494
503
  # audio is passed through. This is the default.
495
504
  #
496
- # * `BASIC`\: Video is transmuxed: Amazon IVS delivers the original
497
- # input to viewers. The viewer’s video-quality choice is limited to
498
- # the original input. Resolution can be up to 1080p and bitrate can be
499
- # up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between
500
- # 480p and 1080p.
505
+ # * `BASIC`: Video is transmuxed: Amazon IVS delivers the original input
506
+ # to viewers. The viewer’s video-quality choice is limited to the
507
+ # original input. Resolution can be up to 1080p and bitrate can be up
508
+ # to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p
509
+ # and 1080p.
501
510
  #
502
511
  # @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
503
512
  #
@@ -508,6 +517,7 @@ module Aws::IVS
508
517
  #
509
518
  # resp = client.create_channel({
510
519
  # authorized: false,
520
+ # insecure_ingest: false,
511
521
  # latency_mode: "NORMAL", # accepts NORMAL, LOW
512
522
  # name: "ChannelName",
513
523
  # recording_configuration_arn: "ChannelRecordingConfigurationArn",
@@ -522,6 +532,7 @@ module Aws::IVS
522
532
  # resp.channel.arn #=> String
523
533
  # resp.channel.authorized #=> Boolean
524
534
  # resp.channel.ingest_endpoint #=> String
535
+ # resp.channel.insecure_ingest #=> Boolean
525
536
  # resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
526
537
  # resp.channel.name #=> String
527
538
  # resp.channel.playback_url #=> String
@@ -818,6 +829,7 @@ module Aws::IVS
818
829
  # resp.channel.arn #=> String
819
830
  # resp.channel.authorized #=> Boolean
820
831
  # resp.channel.ingest_endpoint #=> String
832
+ # resp.channel.insecure_ingest #=> Boolean
821
833
  # resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
822
834
  # resp.channel.name #=> String
823
835
  # resp.channel.playback_url #=> String
@@ -1004,6 +1016,7 @@ module Aws::IVS
1004
1016
  # resp.stream_session.channel.arn #=> String
1005
1017
  # resp.stream_session.channel.authorized #=> Boolean
1006
1018
  # resp.stream_session.channel.ingest_endpoint #=> String
1019
+ # resp.stream_session.channel.insecure_ingest #=> Boolean
1007
1020
  # resp.stream_session.channel.latency_mode #=> String, one of "NORMAL", "LOW"
1008
1021
  # resp.stream_session.channel.name #=> String
1009
1022
  # resp.stream_session.channel.playback_url #=> String
@@ -1149,6 +1162,7 @@ module Aws::IVS
1149
1162
  # resp.channels #=> Array
1150
1163
  # resp.channels[0].arn #=> String
1151
1164
  # resp.channels[0].authorized #=> Boolean
1165
+ # resp.channels[0].insecure_ingest #=> Boolean
1152
1166
  # resp.channels[0].latency_mode #=> String, one of "NORMAL", "LOW"
1153
1167
  # resp.channels[0].name #=> String
1154
1168
  # resp.channels[0].recording_configuration_arn #=> String
@@ -1578,6 +1592,9 @@ module Aws::IVS
1578
1592
  # @option params [Boolean] :authorized
1579
1593
  # Whether the channel is private (enabled for playback authorization).
1580
1594
  #
1595
+ # @option params [Boolean] :insecure_ingest
1596
+ # Whether the channel allows insecure RTMP ingest. Default: `false`.
1597
+ #
1581
1598
  # @option params [String] :latency_mode
1582
1599
  # Channel latency mode. Use `NORMAL` to broadcast and deliver live video
1583
1600
  # up to Full HD. Use `LOW` for near-real-time interaction with viewers.
@@ -1597,7 +1614,7 @@ module Aws::IVS
1597
1614
  # *If you exceed the allowable resolution or bitrate, the stream
1598
1615
  # probably will disconnect immediately*. Valid values:
1599
1616
  #
1600
- # * `STANDARD`\: Video is transcoded: multiple qualities are generated
1617
+ # * `STANDARD`: Video is transcoded: multiple qualities are generated
1601
1618
  # from the original input, to automatically give viewers the best
1602
1619
  # experience for their devices and network conditions. Transcoding
1603
1620
  # allows higher playback quality across a range of download speeds.
@@ -1605,11 +1622,11 @@ module Aws::IVS
1605
1622
  # Audio is transcoded only for renditions 360p and below; above that,
1606
1623
  # audio is passed through. This is the default.
1607
1624
  #
1608
- # * `BASIC`\: Video is transmuxed: Amazon IVS delivers the original
1609
- # input to viewers. The viewer’s video-quality choice is limited to
1610
- # the original input. Resolution can be up to 1080p and bitrate can be
1611
- # up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between
1612
- # 480p and 1080p.
1625
+ # * `BASIC`: Video is transmuxed: Amazon IVS delivers the original input
1626
+ # to viewers. The viewer’s video-quality choice is limited to the
1627
+ # original input. Resolution can be up to 1080p and bitrate can be up
1628
+ # to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p
1629
+ # and 1080p.
1613
1630
  #
1614
1631
  # @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1615
1632
  #
@@ -1620,6 +1637,7 @@ module Aws::IVS
1620
1637
  # resp = client.update_channel({
1621
1638
  # arn: "ChannelArn", # required
1622
1639
  # authorized: false,
1640
+ # insecure_ingest: false,
1623
1641
  # latency_mode: "NORMAL", # accepts NORMAL, LOW
1624
1642
  # name: "ChannelName",
1625
1643
  # recording_configuration_arn: "ChannelRecordingConfigurationArn",
@@ -1631,6 +1649,7 @@ module Aws::IVS
1631
1649
  # resp.channel.arn #=> String
1632
1650
  # resp.channel.authorized #=> Boolean
1633
1651
  # resp.channel.ingest_endpoint #=> String
1652
+ # resp.channel.insecure_ingest #=> Boolean
1634
1653
  # resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
1635
1654
  # resp.channel.name #=> String
1636
1655
  # resp.channel.playback_url #=> String
@@ -1661,7 +1680,7 @@ module Aws::IVS
1661
1680
  params: params,
1662
1681
  config: config)
1663
1682
  context[:gem_name] = 'aws-sdk-ivs'
1664
- context[:gem_version] = '1.28.0'
1683
+ context[:gem_version] = '1.30.0'
1665
1684
  Seahorse::Client::Request.new(handlers, context)
1666
1685
  end
1667
1686
 
@@ -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"))
@@ -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`\: Video is transcoded: multiple qualities are generated
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`\: Video is transmuxed: Amazon IVS delivers the original
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`\: Video is transcoded: multiple qualities are generated
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`\: Video is transmuxed: Amazon IVS delivers the original
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`\: Video is transcoded: multiple qualities are generated
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`\: Video is transmuxed: Amazon IVS delivers the original
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ivs/customizations'
52
52
  # @!group service
53
53
  module Aws::IVS
54
54
 
55
- GEM_VERSION = '1.28.0'
55
+ GEM_VERSION = '1.30.0'
56
56
 
57
57
  end
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.28.0
4
+ version: 1.30.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-06 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement