aws-sdk-kinesisvideo 1.14.0 → 1.15.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d4843f25d6a2a1b1ee27c29410a0495834b0b47
|
4
|
+
data.tar.gz: 9bf080ddd68597cc02ac54da90f0bb73d1b99390
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce3164014dff94b90434e557a8613ed2d788a43d3fe5095ebf0c903a752ffecd14d6c5ccc58ba1afc1bb495180b8dadfaaffa50ef8e036f2ece0b2e564f2816a
|
7
|
+
data.tar.gz: 79a472fcf2912cf5a60fdd45e0600f3318ece868cd9f812283c130eff2ba5d0ed085c1876d01e35ed0068869acfb499a909ae952b2df230cfecb65d9b6ee5f2a
|
data/lib/aws-sdk-kinesisvideo.rb
CHANGED
@@ -67,6 +67,12 @@ module Aws::KinesisVideo
|
|
67
67
|
Version = Shapes::StringShape.new(name: 'Version')
|
68
68
|
VersionMismatchException = Shapes::StructureShape.new(name: 'VersionMismatchException')
|
69
69
|
|
70
|
+
AccountStreamLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
71
|
+
AccountStreamLimitExceededException.struct_class = Types::AccountStreamLimitExceededException
|
72
|
+
|
73
|
+
ClientLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
74
|
+
ClientLimitExceededException.struct_class = Types::ClientLimitExceededException
|
75
|
+
|
70
76
|
CreateStreamInput.add_member(:device_name, Shapes::ShapeRef.new(shape: DeviceName, location_name: "DeviceName"))
|
71
77
|
CreateStreamInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, required: true, location_name: "StreamName"))
|
72
78
|
CreateStreamInput.add_member(:media_type, Shapes::ShapeRef.new(shape: MediaType, location_name: "MediaType"))
|
@@ -91,6 +97,9 @@ module Aws::KinesisVideo
|
|
91
97
|
DescribeStreamOutput.add_member(:stream_info, Shapes::ShapeRef.new(shape: StreamInfo, location_name: "StreamInfo"))
|
92
98
|
DescribeStreamOutput.struct_class = Types::DescribeStreamOutput
|
93
99
|
|
100
|
+
DeviceStreamLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
101
|
+
DeviceStreamLimitExceededException.struct_class = Types::DeviceStreamLimitExceededException
|
102
|
+
|
94
103
|
GetDataEndpointInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
95
104
|
GetDataEndpointInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "StreamARN"))
|
96
105
|
GetDataEndpointInput.add_member(:api_name, Shapes::ShapeRef.new(shape: APIName, required: true, location_name: "APIName"))
|
@@ -99,6 +108,15 @@ module Aws::KinesisVideo
|
|
99
108
|
GetDataEndpointOutput.add_member(:data_endpoint, Shapes::ShapeRef.new(shape: DataEndpoint, location_name: "DataEndpoint"))
|
100
109
|
GetDataEndpointOutput.struct_class = Types::GetDataEndpointOutput
|
101
110
|
|
111
|
+
InvalidArgumentException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
112
|
+
InvalidArgumentException.struct_class = Types::InvalidArgumentException
|
113
|
+
|
114
|
+
InvalidDeviceException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
115
|
+
InvalidDeviceException.struct_class = Types::InvalidDeviceException
|
116
|
+
|
117
|
+
InvalidResourceFormatException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
118
|
+
InvalidResourceFormatException.struct_class = Types::InvalidResourceFormatException
|
119
|
+
|
102
120
|
ListStreamsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListStreamsInputLimit, location_name: "MaxResults"))
|
103
121
|
ListStreamsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
104
122
|
ListStreamsInput.add_member(:stream_name_condition, Shapes::ShapeRef.new(shape: StreamNameCondition, location_name: "StreamNameCondition"))
|
@@ -117,6 +135,15 @@ module Aws::KinesisVideo
|
|
117
135
|
ListTagsForStreamOutput.add_member(:tags, Shapes::ShapeRef.new(shape: ResourceTags, location_name: "Tags"))
|
118
136
|
ListTagsForStreamOutput.struct_class = Types::ListTagsForStreamOutput
|
119
137
|
|
138
|
+
NotAuthorizedException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
139
|
+
NotAuthorizedException.struct_class = Types::NotAuthorizedException
|
140
|
+
|
141
|
+
ResourceInUseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
142
|
+
ResourceInUseException.struct_class = Types::ResourceInUseException
|
143
|
+
|
144
|
+
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
145
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
146
|
+
|
120
147
|
ResourceTags.key = Shapes::ShapeRef.new(shape: TagKey)
|
121
148
|
ResourceTags.value = Shapes::ShapeRef.new(shape: TagValue)
|
122
149
|
|
@@ -146,6 +173,9 @@ module Aws::KinesisVideo
|
|
146
173
|
|
147
174
|
TagStreamOutput.struct_class = Types::TagStreamOutput
|
148
175
|
|
176
|
+
TagsPerResourceExceededLimitException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
177
|
+
TagsPerResourceExceededLimitException.struct_class = Types::TagsPerResourceExceededLimitException
|
178
|
+
|
149
179
|
UntagStreamInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "StreamARN"))
|
150
180
|
UntagStreamInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
151
181
|
UntagStreamInput.add_member(:tag_key_list, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeyList"))
|
@@ -171,6 +201,9 @@ module Aws::KinesisVideo
|
|
171
201
|
|
172
202
|
UpdateStreamOutput.struct_class = Types::UpdateStreamOutput
|
173
203
|
|
204
|
+
VersionMismatchException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
205
|
+
VersionMismatchException.struct_class = Types::VersionMismatchException
|
206
|
+
|
174
207
|
|
175
208
|
# @api private
|
176
209
|
API = Seahorse::Model::Api.new.tap do |api|
|
@@ -10,5 +10,181 @@ module Aws::KinesisVideo
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class AccountStreamLimitExceededException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::KinesisVideo::Types::AccountStreamLimitExceededException] data
|
18
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
19
|
+
super(context, message, data)
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [String]
|
23
|
+
def message
|
24
|
+
@message || @data[:message]
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
class ClientLimitExceededException < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::KinesisVideo::Types::ClientLimitExceededException] data
|
34
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
35
|
+
super(context, message, data)
|
36
|
+
end
|
37
|
+
|
38
|
+
# @return [String]
|
39
|
+
def message
|
40
|
+
@message || @data[:message]
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
class DeviceStreamLimitExceededException < ServiceError
|
46
|
+
|
47
|
+
# @param [Seahorse::Client::RequestContext] context
|
48
|
+
# @param [String] message
|
49
|
+
# @param [Aws::KinesisVideo::Types::DeviceStreamLimitExceededException] data
|
50
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
51
|
+
super(context, message, data)
|
52
|
+
end
|
53
|
+
|
54
|
+
# @return [String]
|
55
|
+
def message
|
56
|
+
@message || @data[:message]
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
|
61
|
+
class InvalidArgumentException < ServiceError
|
62
|
+
|
63
|
+
# @param [Seahorse::Client::RequestContext] context
|
64
|
+
# @param [String] message
|
65
|
+
# @param [Aws::KinesisVideo::Types::InvalidArgumentException] data
|
66
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
67
|
+
super(context, message, data)
|
68
|
+
end
|
69
|
+
|
70
|
+
# @return [String]
|
71
|
+
def message
|
72
|
+
@message || @data[:message]
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
|
77
|
+
class InvalidDeviceException < ServiceError
|
78
|
+
|
79
|
+
# @param [Seahorse::Client::RequestContext] context
|
80
|
+
# @param [String] message
|
81
|
+
# @param [Aws::KinesisVideo::Types::InvalidDeviceException] data
|
82
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
83
|
+
super(context, message, data)
|
84
|
+
end
|
85
|
+
|
86
|
+
# @return [String]
|
87
|
+
def message
|
88
|
+
@message || @data[:message]
|
89
|
+
end
|
90
|
+
|
91
|
+
end
|
92
|
+
|
93
|
+
class InvalidResourceFormatException < ServiceError
|
94
|
+
|
95
|
+
# @param [Seahorse::Client::RequestContext] context
|
96
|
+
# @param [String] message
|
97
|
+
# @param [Aws::KinesisVideo::Types::InvalidResourceFormatException] data
|
98
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
99
|
+
super(context, message, data)
|
100
|
+
end
|
101
|
+
|
102
|
+
# @return [String]
|
103
|
+
def message
|
104
|
+
@message || @data[:message]
|
105
|
+
end
|
106
|
+
|
107
|
+
end
|
108
|
+
|
109
|
+
class NotAuthorizedException < ServiceError
|
110
|
+
|
111
|
+
# @param [Seahorse::Client::RequestContext] context
|
112
|
+
# @param [String] message
|
113
|
+
# @param [Aws::KinesisVideo::Types::NotAuthorizedException] data
|
114
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
115
|
+
super(context, message, data)
|
116
|
+
end
|
117
|
+
|
118
|
+
# @return [String]
|
119
|
+
def message
|
120
|
+
@message || @data[:message]
|
121
|
+
end
|
122
|
+
|
123
|
+
end
|
124
|
+
|
125
|
+
class ResourceInUseException < ServiceError
|
126
|
+
|
127
|
+
# @param [Seahorse::Client::RequestContext] context
|
128
|
+
# @param [String] message
|
129
|
+
# @param [Aws::KinesisVideo::Types::ResourceInUseException] data
|
130
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
131
|
+
super(context, message, data)
|
132
|
+
end
|
133
|
+
|
134
|
+
# @return [String]
|
135
|
+
def message
|
136
|
+
@message || @data[:message]
|
137
|
+
end
|
138
|
+
|
139
|
+
end
|
140
|
+
|
141
|
+
class ResourceNotFoundException < ServiceError
|
142
|
+
|
143
|
+
# @param [Seahorse::Client::RequestContext] context
|
144
|
+
# @param [String] message
|
145
|
+
# @param [Aws::KinesisVideo::Types::ResourceNotFoundException] data
|
146
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
147
|
+
super(context, message, data)
|
148
|
+
end
|
149
|
+
|
150
|
+
# @return [String]
|
151
|
+
def message
|
152
|
+
@message || @data[:message]
|
153
|
+
end
|
154
|
+
|
155
|
+
end
|
156
|
+
|
157
|
+
class TagsPerResourceExceededLimitException < ServiceError
|
158
|
+
|
159
|
+
# @param [Seahorse::Client::RequestContext] context
|
160
|
+
# @param [String] message
|
161
|
+
# @param [Aws::KinesisVideo::Types::TagsPerResourceExceededLimitException] data
|
162
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
163
|
+
super(context, message, data)
|
164
|
+
end
|
165
|
+
|
166
|
+
# @return [String]
|
167
|
+
def message
|
168
|
+
@message || @data[:message]
|
169
|
+
end
|
170
|
+
|
171
|
+
end
|
172
|
+
|
173
|
+
class VersionMismatchException < ServiceError
|
174
|
+
|
175
|
+
# @param [Seahorse::Client::RequestContext] context
|
176
|
+
# @param [String] message
|
177
|
+
# @param [Aws::KinesisVideo::Types::VersionMismatchException] data
|
178
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
179
|
+
super(context, message, data)
|
180
|
+
end
|
181
|
+
|
182
|
+
# @return [String]
|
183
|
+
def message
|
184
|
+
@message || @data[:message]
|
185
|
+
end
|
186
|
+
|
187
|
+
end
|
188
|
+
|
13
189
|
end
|
14
190
|
end
|
@@ -8,6 +8,31 @@
|
|
8
8
|
module Aws::KinesisVideo
|
9
9
|
module Types
|
10
10
|
|
11
|
+
# The number of streams created for the account is too high.
|
12
|
+
#
|
13
|
+
# @!attribute [rw] message
|
14
|
+
# @return [String]
|
15
|
+
#
|
16
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/AccountStreamLimitExceededException AWS API Documentation
|
17
|
+
#
|
18
|
+
class AccountStreamLimitExceededException < Struct.new(
|
19
|
+
:message)
|
20
|
+
include Aws::Structure
|
21
|
+
end
|
22
|
+
|
23
|
+
# Kinesis Video Streams has throttled the request because you have
|
24
|
+
# exceeded the limit of allowed client calls. Try making the call later.
|
25
|
+
#
|
26
|
+
# @!attribute [rw] message
|
27
|
+
# @return [String]
|
28
|
+
#
|
29
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/ClientLimitExceededException AWS API Documentation
|
30
|
+
#
|
31
|
+
class ClientLimitExceededException < Struct.new(
|
32
|
+
:message)
|
33
|
+
include Aws::Structure
|
34
|
+
end
|
35
|
+
|
11
36
|
# @note When making an API call, you may pass CreateStreamInput
|
12
37
|
# data as a hash:
|
13
38
|
#
|
@@ -181,6 +206,18 @@ module Aws::KinesisVideo
|
|
181
206
|
include Aws::Structure
|
182
207
|
end
|
183
208
|
|
209
|
+
# Not implemented.
|
210
|
+
#
|
211
|
+
# @!attribute [rw] message
|
212
|
+
# @return [String]
|
213
|
+
#
|
214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/DeviceStreamLimitExceededException AWS API Documentation
|
215
|
+
#
|
216
|
+
class DeviceStreamLimitExceededException < Struct.new(
|
217
|
+
:message)
|
218
|
+
include Aws::Structure
|
219
|
+
end
|
220
|
+
|
184
221
|
# @note When making an API call, you may pass GetDataEndpointInput
|
185
222
|
# data as a hash:
|
186
223
|
#
|
@@ -226,6 +263,42 @@ module Aws::KinesisVideo
|
|
226
263
|
include Aws::Structure
|
227
264
|
end
|
228
265
|
|
266
|
+
# The value for this input parameter is invalid.
|
267
|
+
#
|
268
|
+
# @!attribute [rw] message
|
269
|
+
# @return [String]
|
270
|
+
#
|
271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/InvalidArgumentException AWS API Documentation
|
272
|
+
#
|
273
|
+
class InvalidArgumentException < Struct.new(
|
274
|
+
:message)
|
275
|
+
include Aws::Structure
|
276
|
+
end
|
277
|
+
|
278
|
+
# Not implemented.
|
279
|
+
#
|
280
|
+
# @!attribute [rw] message
|
281
|
+
# @return [String]
|
282
|
+
#
|
283
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/InvalidDeviceException AWS API Documentation
|
284
|
+
#
|
285
|
+
class InvalidDeviceException < Struct.new(
|
286
|
+
:message)
|
287
|
+
include Aws::Structure
|
288
|
+
end
|
289
|
+
|
290
|
+
# The format of the `StreamARN` is invalid.
|
291
|
+
#
|
292
|
+
# @!attribute [rw] message
|
293
|
+
# @return [String]
|
294
|
+
#
|
295
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/InvalidResourceFormatException AWS API Documentation
|
296
|
+
#
|
297
|
+
class InvalidResourceFormatException < Struct.new(
|
298
|
+
:message)
|
299
|
+
include Aws::Structure
|
300
|
+
end
|
301
|
+
|
229
302
|
# @note When making an API call, you may pass ListStreamsInput
|
230
303
|
# data as a hash:
|
231
304
|
#
|
@@ -335,6 +408,43 @@ module Aws::KinesisVideo
|
|
335
408
|
include Aws::Structure
|
336
409
|
end
|
337
410
|
|
411
|
+
# The caller is not authorized to perform this operation.
|
412
|
+
#
|
413
|
+
# @!attribute [rw] message
|
414
|
+
# @return [String]
|
415
|
+
#
|
416
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/NotAuthorizedException AWS API Documentation
|
417
|
+
#
|
418
|
+
class NotAuthorizedException < Struct.new(
|
419
|
+
:message)
|
420
|
+
include Aws::Structure
|
421
|
+
end
|
422
|
+
|
423
|
+
# The stream is currently not available for this operation.
|
424
|
+
#
|
425
|
+
# @!attribute [rw] message
|
426
|
+
# @return [String]
|
427
|
+
#
|
428
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/ResourceInUseException AWS API Documentation
|
429
|
+
#
|
430
|
+
class ResourceInUseException < Struct.new(
|
431
|
+
:message)
|
432
|
+
include Aws::Structure
|
433
|
+
end
|
434
|
+
|
435
|
+
# Amazon Kinesis Video Streams can't find the stream that you
|
436
|
+
# specified.
|
437
|
+
#
|
438
|
+
# @!attribute [rw] message
|
439
|
+
# @return [String]
|
440
|
+
#
|
441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/ResourceNotFoundException AWS API Documentation
|
442
|
+
#
|
443
|
+
class ResourceNotFoundException < Struct.new(
|
444
|
+
:message)
|
445
|
+
include Aws::Structure
|
446
|
+
end
|
447
|
+
|
338
448
|
# An object describing a Kinesis video stream.
|
339
449
|
#
|
340
450
|
# @!attribute [rw] device_name
|
@@ -459,6 +569,19 @@ module Aws::KinesisVideo
|
|
459
569
|
#
|
460
570
|
class TagStreamOutput < Aws::EmptyStructure; end
|
461
571
|
|
572
|
+
# You have exceeded the limit of tags that you can associate with the
|
573
|
+
# resource. Kinesis video streams support up to 50 tags.
|
574
|
+
#
|
575
|
+
# @!attribute [rw] message
|
576
|
+
# @return [String]
|
577
|
+
#
|
578
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/TagsPerResourceExceededLimitException AWS API Documentation
|
579
|
+
#
|
580
|
+
class TagsPerResourceExceededLimitException < Struct.new(
|
581
|
+
:message)
|
582
|
+
include Aws::Structure
|
583
|
+
end
|
584
|
+
|
462
585
|
# @note When making an API call, you may pass UntagStreamInput
|
463
586
|
# data as a hash:
|
464
587
|
#
|
@@ -612,5 +735,22 @@ module Aws::KinesisVideo
|
|
612
735
|
#
|
613
736
|
class UpdateStreamOutput < Aws::EmptyStructure; end
|
614
737
|
|
738
|
+
# The stream version that you specified is not the latest version. To
|
739
|
+
# get the latest version, use the [DescribeStream][1] API.
|
740
|
+
#
|
741
|
+
#
|
742
|
+
#
|
743
|
+
# [1]: https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_DescribeStream.html
|
744
|
+
#
|
745
|
+
# @!attribute [rw] message
|
746
|
+
# @return [String]
|
747
|
+
#
|
748
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/VersionMismatchException AWS API Documentation
|
749
|
+
#
|
750
|
+
class VersionMismatchException < Struct.new(
|
751
|
+
:message)
|
752
|
+
include Aws::Structure
|
753
|
+
end
|
754
|
+
|
615
755
|
end
|
616
756
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kinesisvideo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.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: 2019-05-
|
11
|
+
date: 2019-05-21 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.53.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.53.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|