aws-sdk-ivs 1.15.0 → 1.19.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivs/client.rb +31 -3
- data/lib/aws-sdk-ivs/client_api.rb +10 -0
- data/lib/aws-sdk-ivs/types.rb +63 -2
- data/lib/aws-sdk-ivs.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 669de8df3033966f8e65ab521f3d8c43f0b38701e1e2613cc8935be2cc132885
|
4
|
+
data.tar.gz: e8d4e418b2aa896a26a5c458d05171adfeddec28fde23ad50f55dfef1c37cf5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ecf2d842c19b6341afbc15ed87a97709170dc328be241646071fcfa24a1095512c1814a3fc9fdf660ec7028cb803f16ffbe81b0ba9ba0a48a7097a347fcc7ff8
|
7
|
+
data.tar.gz: 79c66569fee92b96685f0606540827dfd9f7b362df2c57a61c7a7b28552e0c5c0e401e7a82c3dabf1bd6b2643a5e3ade66b2f0290a1c680bc00b3d6b0b437dd7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.19.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.18.0 (2022-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for the new Thumbnail Configuration property for Recording Configurations. For more information see https://docs.aws.amazon.com/ivs/latest/userguide/record-to-s3.html
|
13
|
+
|
14
|
+
1.17.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.16.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.15.0 (2021-11-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.19.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::IVS
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::IVS
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::IVS
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -295,7 +305,7 @@ module Aws::IVS
|
|
295
305
|
# seconds to wait when opening a HTTP session before raising a
|
296
306
|
# `Timeout::Error`.
|
297
307
|
#
|
298
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
309
|
# number of seconds to wait for response data. This value can
|
300
310
|
# safely be set per-request on the session.
|
301
311
|
#
|
@@ -311,6 +321,9 @@ module Aws::IVS
|
|
311
321
|
# disables this behaviour. This value can safely be set per
|
312
322
|
# request on the session.
|
313
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
314
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
328
|
# HTTP debug output will be sent to the `:logger`.
|
316
329
|
#
|
@@ -526,6 +539,11 @@ module Aws::IVS
|
|
526
539
|
# @option params [Hash<String,String>] :tags
|
527
540
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
528
541
|
#
|
542
|
+
# @option params [Types::ThumbnailConfiguration] :thumbnail_configuration
|
543
|
+
# A complex type that allows you to enable/disable the recording of
|
544
|
+
# thumbnails for a live session and modify the interval at which
|
545
|
+
# thumbnails are generated for the live session.
|
546
|
+
#
|
529
547
|
# @return [Types::CreateRecordingConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
530
548
|
#
|
531
549
|
# * {Types::CreateRecordingConfigurationResponse#recording_configuration #recording_configuration} => Types::RecordingConfiguration
|
@@ -542,6 +560,10 @@ module Aws::IVS
|
|
542
560
|
# tags: {
|
543
561
|
# "TagKey" => "TagValue",
|
544
562
|
# },
|
563
|
+
# thumbnail_configuration: {
|
564
|
+
# recording_mode: "DISABLED", # accepts DISABLED, INTERVAL
|
565
|
+
# target_interval_seconds: 1,
|
566
|
+
# },
|
545
567
|
# })
|
546
568
|
#
|
547
569
|
# @example Response structure
|
@@ -552,6 +574,8 @@ module Aws::IVS
|
|
552
574
|
# resp.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
|
553
575
|
# resp.recording_configuration.tags #=> Hash
|
554
576
|
# resp.recording_configuration.tags["TagKey"] #=> String
|
577
|
+
# resp.recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "DISABLED", "INTERVAL"
|
578
|
+
# resp.recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
|
555
579
|
#
|
556
580
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateRecordingConfiguration AWS API Documentation
|
557
581
|
#
|
@@ -820,6 +844,8 @@ module Aws::IVS
|
|
820
844
|
# resp.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
|
821
845
|
# resp.recording_configuration.tags #=> Hash
|
822
846
|
# resp.recording_configuration.tags["TagKey"] #=> String
|
847
|
+
# resp.recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "DISABLED", "INTERVAL"
|
848
|
+
# resp.recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
|
823
849
|
#
|
824
850
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/GetRecordingConfiguration AWS API Documentation
|
825
851
|
#
|
@@ -949,6 +975,8 @@ module Aws::IVS
|
|
949
975
|
# resp.stream_session.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
|
950
976
|
# resp.stream_session.recording_configuration.tags #=> Hash
|
951
977
|
# resp.stream_session.recording_configuration.tags["TagKey"] #=> String
|
978
|
+
# resp.stream_session.recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "DISABLED", "INTERVAL"
|
979
|
+
# resp.stream_session.recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
|
952
980
|
# resp.stream_session.start_time #=> Time
|
953
981
|
# resp.stream_session.stream_id #=> String
|
954
982
|
# resp.stream_session.truncated_events #=> Array
|
@@ -1546,7 +1574,7 @@ module Aws::IVS
|
|
1546
1574
|
params: params,
|
1547
1575
|
config: config)
|
1548
1576
|
context[:gem_name] = 'aws-sdk-ivs'
|
1549
|
-
context[:gem_version] = '1.
|
1577
|
+
context[:gem_version] = '1.19.0'
|
1550
1578
|
Seahorse::Client::Request.new(handlers, context)
|
1551
1579
|
end
|
1552
1580
|
|
@@ -101,6 +101,7 @@ module Aws::IVS
|
|
101
101
|
RecordingConfigurationName = Shapes::StringShape.new(name: 'RecordingConfigurationName')
|
102
102
|
RecordingConfigurationState = Shapes::StringShape.new(name: 'RecordingConfigurationState')
|
103
103
|
RecordingConfigurationSummary = Shapes::StructureShape.new(name: 'RecordingConfigurationSummary')
|
104
|
+
RecordingMode = Shapes::StringShape.new(name: 'RecordingMode')
|
104
105
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
105
106
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
106
107
|
S3DestinationBucketName = Shapes::StringShape.new(name: 'S3DestinationBucketName')
|
@@ -138,7 +139,9 @@ module Aws::IVS
|
|
138
139
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
139
140
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
140
141
|
Tags = Shapes::MapShape.new(name: 'Tags')
|
142
|
+
TargetIntervalSeconds = Shapes::IntegerShape.new(name: 'TargetIntervalSeconds')
|
141
143
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
144
|
+
ThumbnailConfiguration = Shapes::StructureShape.new(name: 'ThumbnailConfiguration')
|
142
145
|
Time = Shapes::TimestampShape.new(name: 'Time', timestampFormat: "iso8601")
|
143
146
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
144
147
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
@@ -225,6 +228,7 @@ module Aws::IVS
|
|
225
228
|
CreateRecordingConfigurationRequest.add_member(:destination_configuration, Shapes::ShapeRef.new(shape: DestinationConfiguration, required: true, location_name: "destinationConfiguration"))
|
226
229
|
CreateRecordingConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: RecordingConfigurationName, location_name: "name"))
|
227
230
|
CreateRecordingConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
231
|
+
CreateRecordingConfigurationRequest.add_member(:thumbnail_configuration, Shapes::ShapeRef.new(shape: ThumbnailConfiguration, location_name: "thumbnailConfiguration"))
|
228
232
|
CreateRecordingConfigurationRequest.struct_class = Types::CreateRecordingConfigurationRequest
|
229
233
|
|
230
234
|
CreateRecordingConfigurationResponse.add_member(:recording_configuration, Shapes::ShapeRef.new(shape: RecordingConfiguration, location_name: "recordingConfiguration"))
|
@@ -390,6 +394,7 @@ module Aws::IVS
|
|
390
394
|
RecordingConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: RecordingConfigurationName, location_name: "name"))
|
391
395
|
RecordingConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: RecordingConfigurationState, required: true, location_name: "state"))
|
392
396
|
RecordingConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
397
|
+
RecordingConfiguration.add_member(:thumbnail_configuration, Shapes::ShapeRef.new(shape: ThumbnailConfiguration, location_name: "thumbnailConfiguration"))
|
393
398
|
RecordingConfiguration.struct_class = Types::RecordingConfiguration
|
394
399
|
|
395
400
|
RecordingConfigurationList.member = Shapes::ShapeRef.new(shape: RecordingConfigurationSummary)
|
@@ -495,6 +500,10 @@ module Aws::IVS
|
|
495
500
|
ThrottlingException.add_member(:exception_message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "exceptionMessage"))
|
496
501
|
ThrottlingException.struct_class = Types::ThrottlingException
|
497
502
|
|
503
|
+
ThumbnailConfiguration.add_member(:recording_mode, Shapes::ShapeRef.new(shape: RecordingMode, location_name: "recordingMode"))
|
504
|
+
ThumbnailConfiguration.add_member(:target_interval_seconds, Shapes::ShapeRef.new(shape: TargetIntervalSeconds, location_name: "targetIntervalSeconds"))
|
505
|
+
ThumbnailConfiguration.struct_class = Types::ThumbnailConfiguration
|
506
|
+
|
498
507
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location: "uri", location_name: "resourceArn"))
|
499
508
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
|
500
509
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
@@ -822,6 +831,7 @@ module Aws::IVS
|
|
822
831
|
o.input = Shapes::ShapeRef.new(shape: ListStreamsRequest)
|
823
832
|
o.output = Shapes::ShapeRef.new(shape: ListStreamsResponse)
|
824
833
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
834
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
825
835
|
o[:pager] = Aws::Pager.new(
|
826
836
|
limit_key: "max_results",
|
827
837
|
tokens: {
|
data/lib/aws-sdk-ivs/types.rb
CHANGED
@@ -385,6 +385,10 @@ module Aws::IVS
|
|
385
385
|
# tags: {
|
386
386
|
# "TagKey" => "TagValue",
|
387
387
|
# },
|
388
|
+
# thumbnail_configuration: {
|
389
|
+
# recording_mode: "DISABLED", # accepts DISABLED, INTERVAL
|
390
|
+
# target_interval_seconds: 1,
|
391
|
+
# },
|
388
392
|
# }
|
389
393
|
#
|
390
394
|
# @!attribute [rw] destination_configuration
|
@@ -400,12 +404,19 @@ module Aws::IVS
|
|
400
404
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
401
405
|
# @return [Hash<String,String>]
|
402
406
|
#
|
407
|
+
# @!attribute [rw] thumbnail_configuration
|
408
|
+
# A complex type that allows you to enable/disable the recording of
|
409
|
+
# thumbnails for a live session and modify the interval at which
|
410
|
+
# thumbnails are generated for the live session.
|
411
|
+
# @return [Types::ThumbnailConfiguration]
|
412
|
+
#
|
403
413
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateRecordingConfigurationRequest AWS API Documentation
|
404
414
|
#
|
405
415
|
class CreateRecordingConfigurationRequest < Struct.new(
|
406
416
|
:destination_configuration,
|
407
417
|
:name,
|
408
|
-
:tags
|
418
|
+
:tags,
|
419
|
+
:thumbnail_configuration)
|
409
420
|
SENSITIVE = []
|
410
421
|
include Aws::Structure
|
411
422
|
end
|
@@ -1078,6 +1089,7 @@ module Aws::IVS
|
|
1078
1089
|
# @return [String]
|
1079
1090
|
#
|
1080
1091
|
# @!attribute [rw] stream_sessions
|
1092
|
+
# List of stream sessions.
|
1081
1093
|
# @return [Array<Types::StreamSessionSummary>]
|
1082
1094
|
#
|
1083
1095
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ListStreamSessionsResponse AWS API Documentation
|
@@ -1287,6 +1299,12 @@ module Aws::IVS
|
|
1287
1299
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
1288
1300
|
# @return [Hash<String,String>]
|
1289
1301
|
#
|
1302
|
+
# @!attribute [rw] thumbnail_configuration
|
1303
|
+
# A complex type that allows you to enable/disable the recording of
|
1304
|
+
# thumbnails for a live session and modify the interval at which
|
1305
|
+
# thumbnails are generated for the live session.
|
1306
|
+
# @return [Types::ThumbnailConfiguration]
|
1307
|
+
#
|
1290
1308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/RecordingConfiguration AWS API Documentation
|
1291
1309
|
#
|
1292
1310
|
class RecordingConfiguration < Struct.new(
|
@@ -1294,7 +1312,8 @@ module Aws::IVS
|
|
1294
1312
|
:destination_configuration,
|
1295
1313
|
:name,
|
1296
1314
|
:state,
|
1297
|
-
:tags
|
1315
|
+
:tags,
|
1316
|
+
:thumbnail_configuration)
|
1298
1317
|
SENSITIVE = []
|
1299
1318
|
include Aws::Structure
|
1300
1319
|
end
|
@@ -1745,6 +1764,48 @@ module Aws::IVS
|
|
1745
1764
|
include Aws::Structure
|
1746
1765
|
end
|
1747
1766
|
|
1767
|
+
# An object representing a configuration of thumbnails for recorded
|
1768
|
+
# video.
|
1769
|
+
#
|
1770
|
+
# @note When making an API call, you may pass ThumbnailConfiguration
|
1771
|
+
# data as a hash:
|
1772
|
+
#
|
1773
|
+
# {
|
1774
|
+
# recording_mode: "DISABLED", # accepts DISABLED, INTERVAL
|
1775
|
+
# target_interval_seconds: 1,
|
1776
|
+
# }
|
1777
|
+
#
|
1778
|
+
# @!attribute [rw] recording_mode
|
1779
|
+
# Thumbnail recording mode. Default: `INTERVAL`.
|
1780
|
+
# @return [String]
|
1781
|
+
#
|
1782
|
+
# @!attribute [rw] target_interval_seconds
|
1783
|
+
# The targeted thumbnail-generation interval in seconds. This is
|
1784
|
+
# configurable (and required) only if `recordingMode` is `INTERVAL`.
|
1785
|
+
# Default: 60.
|
1786
|
+
#
|
1787
|
+
# **Important:** Setting a value for `targetIntervalSeconds` does not
|
1788
|
+
# guarantee that thumbnails are generated at the specified interval.
|
1789
|
+
# For thumbnails to be generated at the `targetIntervalSeconds`
|
1790
|
+
# interval, the `IDR/Keyframe` value for the input video must be less
|
1791
|
+
# than the `targetIntervalSeconds` value. See [ Amazon IVS Streaming
|
1792
|
+
# Configuration][1] for information on setting `IDR/Keyframe` to the
|
1793
|
+
# recommended value in video-encoder settings.
|
1794
|
+
#
|
1795
|
+
#
|
1796
|
+
#
|
1797
|
+
# [1]: https://docs.aws.amazon.com/ivs/latest/userguide/streaming-config.html
|
1798
|
+
# @return [Integer]
|
1799
|
+
#
|
1800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ThumbnailConfiguration AWS API Documentation
|
1801
|
+
#
|
1802
|
+
class ThumbnailConfiguration < Struct.new(
|
1803
|
+
:recording_mode,
|
1804
|
+
:target_interval_seconds)
|
1805
|
+
SENSITIVE = []
|
1806
|
+
include Aws::Structure
|
1807
|
+
end
|
1808
|
+
|
1748
1809
|
# @note When making an API call, you may pass UntagResourceRequest
|
1749
1810
|
# data as a hash:
|
1750
1811
|
#
|
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.19.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:
|
11
|
+
date: 2022-02-03 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.
|
22
|
+
version: 3.126.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.
|
32
|
+
version: 3.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|