aws-sdk-sqs 1.60.0 → 1.93.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,472 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::SQS
9
+ module Types
10
+
11
+ class AddPermissionRequest
12
+ attr_accessor queue_url: ::String
13
+ attr_accessor label: ::String
14
+ attr_accessor aws_account_ids: ::Array[::String]
15
+ attr_accessor actions: ::Array[::String]
16
+ SENSITIVE: []
17
+ end
18
+
19
+ class BatchEntryIdsNotDistinct
20
+ attr_accessor message: ::String
21
+ SENSITIVE: []
22
+ end
23
+
24
+ class BatchRequestTooLong
25
+ attr_accessor message: ::String
26
+ SENSITIVE: []
27
+ end
28
+
29
+ class BatchResultErrorEntry
30
+ attr_accessor id: ::String
31
+ attr_accessor sender_fault: bool
32
+ attr_accessor code: ::String
33
+ attr_accessor message: ::String
34
+ SENSITIVE: []
35
+ end
36
+
37
+ class CancelMessageMoveTaskRequest
38
+ attr_accessor task_handle: ::String
39
+ SENSITIVE: []
40
+ end
41
+
42
+ class CancelMessageMoveTaskResult
43
+ attr_accessor approximate_number_of_messages_moved: ::Integer
44
+ SENSITIVE: []
45
+ end
46
+
47
+ class ChangeMessageVisibilityBatchRequest
48
+ attr_accessor queue_url: ::String
49
+ attr_accessor entries: ::Array[Types::ChangeMessageVisibilityBatchRequestEntry]
50
+ SENSITIVE: []
51
+ end
52
+
53
+ class ChangeMessageVisibilityBatchRequestEntry
54
+ attr_accessor id: ::String
55
+ attr_accessor receipt_handle: ::String
56
+ attr_accessor visibility_timeout: ::Integer
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class ChangeMessageVisibilityBatchResult
61
+ attr_accessor successful: ::Array[Types::ChangeMessageVisibilityBatchResultEntry]
62
+ attr_accessor failed: ::Array[Types::BatchResultErrorEntry]
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class ChangeMessageVisibilityBatchResultEntry
67
+ attr_accessor id: ::String
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class ChangeMessageVisibilityRequest
72
+ attr_accessor queue_url: ::String
73
+ attr_accessor receipt_handle: ::String
74
+ attr_accessor visibility_timeout: ::Integer
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class CreateQueueRequest
79
+ attr_accessor queue_name: ::String
80
+ attr_accessor attributes: ::Hash[("All" | "Policy" | "VisibilityTimeout" | "MaximumMessageSize" | "MessageRetentionPeriod" | "ApproximateNumberOfMessages" | "ApproximateNumberOfMessagesNotVisible" | "CreatedTimestamp" | "LastModifiedTimestamp" | "QueueArn" | "ApproximateNumberOfMessagesDelayed" | "DelaySeconds" | "ReceiveMessageWaitTimeSeconds" | "RedrivePolicy" | "FifoQueue" | "ContentBasedDeduplication" | "KmsMasterKeyId" | "KmsDataKeyReusePeriodSeconds" | "DeduplicationScope" | "FifoThroughputLimit" | "RedriveAllowPolicy" | "SqsManagedSseEnabled"), ::String]
81
+ attr_accessor tags: ::Hash[::String, ::String]
82
+ SENSITIVE: []
83
+ end
84
+
85
+ class CreateQueueResult
86
+ attr_accessor queue_url: ::String
87
+ SENSITIVE: []
88
+ end
89
+
90
+ class DeleteMessageBatchRequest
91
+ attr_accessor queue_url: ::String
92
+ attr_accessor entries: ::Array[Types::DeleteMessageBatchRequestEntry]
93
+ SENSITIVE: []
94
+ end
95
+
96
+ class DeleteMessageBatchRequestEntry
97
+ attr_accessor id: ::String
98
+ attr_accessor receipt_handle: ::String
99
+ SENSITIVE: []
100
+ end
101
+
102
+ class DeleteMessageBatchResult
103
+ attr_accessor successful: ::Array[Types::DeleteMessageBatchResultEntry]
104
+ attr_accessor failed: ::Array[Types::BatchResultErrorEntry]
105
+ SENSITIVE: []
106
+ end
107
+
108
+ class DeleteMessageBatchResultEntry
109
+ attr_accessor id: ::String
110
+ SENSITIVE: []
111
+ end
112
+
113
+ class DeleteMessageRequest
114
+ attr_accessor queue_url: ::String
115
+ attr_accessor receipt_handle: ::String
116
+ SENSITIVE: []
117
+ end
118
+
119
+ class DeleteQueueRequest
120
+ attr_accessor queue_url: ::String
121
+ SENSITIVE: []
122
+ end
123
+
124
+ class EmptyBatchRequest
125
+ attr_accessor message: ::String
126
+ SENSITIVE: []
127
+ end
128
+
129
+ class GetQueueAttributesRequest
130
+ attr_accessor queue_url: ::String
131
+ attr_accessor attribute_names: ::Array[("All" | "Policy" | "VisibilityTimeout" | "MaximumMessageSize" | "MessageRetentionPeriod" | "ApproximateNumberOfMessages" | "ApproximateNumberOfMessagesNotVisible" | "CreatedTimestamp" | "LastModifiedTimestamp" | "QueueArn" | "ApproximateNumberOfMessagesDelayed" | "DelaySeconds" | "ReceiveMessageWaitTimeSeconds" | "RedrivePolicy" | "FifoQueue" | "ContentBasedDeduplication" | "KmsMasterKeyId" | "KmsDataKeyReusePeriodSeconds" | "DeduplicationScope" | "FifoThroughputLimit" | "RedriveAllowPolicy" | "SqsManagedSseEnabled")]
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class GetQueueAttributesResult
136
+ attr_accessor attributes: ::Hash[("All" | "Policy" | "VisibilityTimeout" | "MaximumMessageSize" | "MessageRetentionPeriod" | "ApproximateNumberOfMessages" | "ApproximateNumberOfMessagesNotVisible" | "CreatedTimestamp" | "LastModifiedTimestamp" | "QueueArn" | "ApproximateNumberOfMessagesDelayed" | "DelaySeconds" | "ReceiveMessageWaitTimeSeconds" | "RedrivePolicy" | "FifoQueue" | "ContentBasedDeduplication" | "KmsMasterKeyId" | "KmsDataKeyReusePeriodSeconds" | "DeduplicationScope" | "FifoThroughputLimit" | "RedriveAllowPolicy" | "SqsManagedSseEnabled"), ::String]
137
+ SENSITIVE: []
138
+ end
139
+
140
+ class GetQueueUrlRequest
141
+ attr_accessor queue_name: ::String
142
+ attr_accessor queue_owner_aws_account_id: ::String
143
+ SENSITIVE: []
144
+ end
145
+
146
+ class GetQueueUrlResult
147
+ attr_accessor queue_url: ::String
148
+ SENSITIVE: []
149
+ end
150
+
151
+ class InvalidAddress
152
+ attr_accessor message: ::String
153
+ SENSITIVE: []
154
+ end
155
+
156
+ class InvalidAttributeName
157
+ attr_accessor message: ::String
158
+ SENSITIVE: []
159
+ end
160
+
161
+ class InvalidAttributeValue
162
+ attr_accessor message: ::String
163
+ SENSITIVE: []
164
+ end
165
+
166
+ class InvalidBatchEntryId
167
+ attr_accessor message: ::String
168
+ SENSITIVE: []
169
+ end
170
+
171
+ class InvalidIdFormat < Aws::EmptyStructure
172
+ end
173
+
174
+ class InvalidMessageContents
175
+ attr_accessor message: ::String
176
+ SENSITIVE: []
177
+ end
178
+
179
+ class InvalidSecurity
180
+ attr_accessor message: ::String
181
+ SENSITIVE: []
182
+ end
183
+
184
+ class KmsAccessDenied
185
+ attr_accessor message: ::String
186
+ SENSITIVE: []
187
+ end
188
+
189
+ class KmsDisabled
190
+ attr_accessor message: ::String
191
+ SENSITIVE: []
192
+ end
193
+
194
+ class KmsInvalidKeyUsage
195
+ attr_accessor message: ::String
196
+ SENSITIVE: []
197
+ end
198
+
199
+ class KmsInvalidState
200
+ attr_accessor message: ::String
201
+ SENSITIVE: []
202
+ end
203
+
204
+ class KmsNotFound
205
+ attr_accessor message: ::String
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class KmsOptInRequired
210
+ attr_accessor message: ::String
211
+ SENSITIVE: []
212
+ end
213
+
214
+ class KmsThrottled
215
+ attr_accessor message: ::String
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class ListDeadLetterSourceQueuesRequest
220
+ attr_accessor queue_url: ::String
221
+ attr_accessor next_token: ::String
222
+ attr_accessor max_results: ::Integer
223
+ SENSITIVE: []
224
+ end
225
+
226
+ class ListDeadLetterSourceQueuesResult
227
+ attr_accessor queue_urls: ::Array[::String]
228
+ attr_accessor next_token: ::String
229
+ SENSITIVE: []
230
+ end
231
+
232
+ class ListMessageMoveTasksRequest
233
+ attr_accessor source_arn: ::String
234
+ attr_accessor max_results: ::Integer
235
+ SENSITIVE: []
236
+ end
237
+
238
+ class ListMessageMoveTasksResult
239
+ attr_accessor results: ::Array[Types::ListMessageMoveTasksResultEntry]
240
+ SENSITIVE: []
241
+ end
242
+
243
+ class ListMessageMoveTasksResultEntry
244
+ attr_accessor task_handle: ::String
245
+ attr_accessor status: ::String
246
+ attr_accessor source_arn: ::String
247
+ attr_accessor destination_arn: ::String
248
+ attr_accessor max_number_of_messages_per_second: ::Integer
249
+ attr_accessor approximate_number_of_messages_moved: ::Integer
250
+ attr_accessor approximate_number_of_messages_to_move: ::Integer
251
+ attr_accessor failure_reason: ::String
252
+ attr_accessor started_timestamp: ::Integer
253
+ SENSITIVE: []
254
+ end
255
+
256
+ class ListQueueTagsRequest
257
+ attr_accessor queue_url: ::String
258
+ SENSITIVE: []
259
+ end
260
+
261
+ class ListQueueTagsResult
262
+ attr_accessor tags: ::Hash[::String, ::String]
263
+ SENSITIVE: []
264
+ end
265
+
266
+ class ListQueuesRequest
267
+ attr_accessor queue_name_prefix: ::String
268
+ attr_accessor next_token: ::String
269
+ attr_accessor max_results: ::Integer
270
+ SENSITIVE: []
271
+ end
272
+
273
+ class ListQueuesResult
274
+ attr_accessor queue_urls: ::Array[::String]
275
+ attr_accessor next_token: ::String
276
+ SENSITIVE: []
277
+ end
278
+
279
+ class Message
280
+ attr_accessor message_id: ::String
281
+ attr_accessor receipt_handle: ::String
282
+ attr_accessor md5_of_body: ::String
283
+ attr_accessor body: ::String
284
+ attr_accessor attributes: ::Hash[("All" | "SenderId" | "SentTimestamp" | "ApproximateReceiveCount" | "ApproximateFirstReceiveTimestamp" | "SequenceNumber" | "MessageDeduplicationId" | "MessageGroupId" | "AWSTraceHeader" | "DeadLetterQueueSourceArn"), ::String]
285
+ attr_accessor md5_of_message_attributes: ::String
286
+ attr_accessor message_attributes: ::Hash[::String, Types::MessageAttributeValue]
287
+ SENSITIVE: []
288
+ end
289
+
290
+ class MessageAttributeValue
291
+ attr_accessor string_value: ::String
292
+ attr_accessor binary_value: ::String
293
+ attr_accessor string_list_values: ::Array[::String]
294
+ attr_accessor binary_list_values: ::Array[::String]
295
+ attr_accessor data_type: ::String
296
+ SENSITIVE: []
297
+ end
298
+
299
+ class MessageNotInflight < Aws::EmptyStructure
300
+ end
301
+
302
+ class MessageSystemAttributeValue
303
+ attr_accessor string_value: ::String
304
+ attr_accessor binary_value: ::String
305
+ attr_accessor string_list_values: ::Array[::String]
306
+ attr_accessor binary_list_values: ::Array[::String]
307
+ attr_accessor data_type: ::String
308
+ SENSITIVE: []
309
+ end
310
+
311
+ class OverLimit
312
+ attr_accessor message: ::String
313
+ SENSITIVE: []
314
+ end
315
+
316
+ class PurgeQueueInProgress
317
+ attr_accessor message: ::String
318
+ SENSITIVE: []
319
+ end
320
+
321
+ class PurgeQueueRequest
322
+ attr_accessor queue_url: ::String
323
+ SENSITIVE: []
324
+ end
325
+
326
+ class QueueDeletedRecently
327
+ attr_accessor message: ::String
328
+ SENSITIVE: []
329
+ end
330
+
331
+ class QueueDoesNotExist
332
+ attr_accessor message: ::String
333
+ SENSITIVE: []
334
+ end
335
+
336
+ class QueueNameExists
337
+ attr_accessor message: ::String
338
+ SENSITIVE: []
339
+ end
340
+
341
+ class ReceiptHandleIsInvalid
342
+ attr_accessor message: ::String
343
+ SENSITIVE: []
344
+ end
345
+
346
+ class ReceiveMessageRequest
347
+ attr_accessor queue_url: ::String
348
+ attr_accessor attribute_names: ::Array[("All" | "Policy" | "VisibilityTimeout" | "MaximumMessageSize" | "MessageRetentionPeriod" | "ApproximateNumberOfMessages" | "ApproximateNumberOfMessagesNotVisible" | "CreatedTimestamp" | "LastModifiedTimestamp" | "QueueArn" | "ApproximateNumberOfMessagesDelayed" | "DelaySeconds" | "ReceiveMessageWaitTimeSeconds" | "RedrivePolicy" | "FifoQueue" | "ContentBasedDeduplication" | "KmsMasterKeyId" | "KmsDataKeyReusePeriodSeconds" | "DeduplicationScope" | "FifoThroughputLimit" | "RedriveAllowPolicy" | "SqsManagedSseEnabled")]
349
+ attr_accessor message_system_attribute_names: ::Array[("All" | "SenderId" | "SentTimestamp" | "ApproximateReceiveCount" | "ApproximateFirstReceiveTimestamp" | "SequenceNumber" | "MessageDeduplicationId" | "MessageGroupId" | "AWSTraceHeader" | "DeadLetterQueueSourceArn")]
350
+ attr_accessor message_attribute_names: ::Array[::String]
351
+ attr_accessor max_number_of_messages: ::Integer
352
+ attr_accessor visibility_timeout: ::Integer
353
+ attr_accessor wait_time_seconds: ::Integer
354
+ attr_accessor receive_request_attempt_id: ::String
355
+ SENSITIVE: []
356
+ end
357
+
358
+ class ReceiveMessageResult
359
+ attr_accessor messages: ::Array[Types::Message]
360
+ SENSITIVE: []
361
+ end
362
+
363
+ class RemovePermissionRequest
364
+ attr_accessor queue_url: ::String
365
+ attr_accessor label: ::String
366
+ SENSITIVE: []
367
+ end
368
+
369
+ class RequestThrottled
370
+ attr_accessor message: ::String
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class ResourceNotFoundException
375
+ attr_accessor message: ::String
376
+ SENSITIVE: []
377
+ end
378
+
379
+ class SendMessageBatchRequest
380
+ attr_accessor queue_url: ::String
381
+ attr_accessor entries: ::Array[Types::SendMessageBatchRequestEntry]
382
+ SENSITIVE: []
383
+ end
384
+
385
+ class SendMessageBatchRequestEntry
386
+ attr_accessor id: ::String
387
+ attr_accessor message_body: ::String
388
+ attr_accessor delay_seconds: ::Integer
389
+ attr_accessor message_attributes: ::Hash[::String, Types::MessageAttributeValue]
390
+ attr_accessor message_system_attributes: ::Hash[("AWSTraceHeader"), Types::MessageSystemAttributeValue]
391
+ attr_accessor message_deduplication_id: ::String
392
+ attr_accessor message_group_id: ::String
393
+ SENSITIVE: []
394
+ end
395
+
396
+ class SendMessageBatchResult
397
+ attr_accessor successful: ::Array[Types::SendMessageBatchResultEntry]
398
+ attr_accessor failed: ::Array[Types::BatchResultErrorEntry]
399
+ SENSITIVE: []
400
+ end
401
+
402
+ class SendMessageBatchResultEntry
403
+ attr_accessor id: ::String
404
+ attr_accessor message_id: ::String
405
+ attr_accessor md5_of_message_body: ::String
406
+ attr_accessor md5_of_message_attributes: ::String
407
+ attr_accessor md5_of_message_system_attributes: ::String
408
+ attr_accessor sequence_number: ::String
409
+ SENSITIVE: []
410
+ end
411
+
412
+ class SendMessageRequest
413
+ attr_accessor queue_url: ::String
414
+ attr_accessor message_body: ::String
415
+ attr_accessor delay_seconds: ::Integer
416
+ attr_accessor message_attributes: ::Hash[::String, Types::MessageAttributeValue]
417
+ attr_accessor message_system_attributes: ::Hash[("AWSTraceHeader"), Types::MessageSystemAttributeValue]
418
+ attr_accessor message_deduplication_id: ::String
419
+ attr_accessor message_group_id: ::String
420
+ SENSITIVE: []
421
+ end
422
+
423
+ class SendMessageResult
424
+ attr_accessor md5_of_message_body: ::String
425
+ attr_accessor md5_of_message_attributes: ::String
426
+ attr_accessor md5_of_message_system_attributes: ::String
427
+ attr_accessor message_id: ::String
428
+ attr_accessor sequence_number: ::String
429
+ SENSITIVE: []
430
+ end
431
+
432
+ class SetQueueAttributesRequest
433
+ attr_accessor queue_url: ::String
434
+ attr_accessor attributes: ::Hash[("All" | "Policy" | "VisibilityTimeout" | "MaximumMessageSize" | "MessageRetentionPeriod" | "ApproximateNumberOfMessages" | "ApproximateNumberOfMessagesNotVisible" | "CreatedTimestamp" | "LastModifiedTimestamp" | "QueueArn" | "ApproximateNumberOfMessagesDelayed" | "DelaySeconds" | "ReceiveMessageWaitTimeSeconds" | "RedrivePolicy" | "FifoQueue" | "ContentBasedDeduplication" | "KmsMasterKeyId" | "KmsDataKeyReusePeriodSeconds" | "DeduplicationScope" | "FifoThroughputLimit" | "RedriveAllowPolicy" | "SqsManagedSseEnabled"), ::String]
435
+ SENSITIVE: []
436
+ end
437
+
438
+ class StartMessageMoveTaskRequest
439
+ attr_accessor source_arn: ::String
440
+ attr_accessor destination_arn: ::String
441
+ attr_accessor max_number_of_messages_per_second: ::Integer
442
+ SENSITIVE: []
443
+ end
444
+
445
+ class StartMessageMoveTaskResult
446
+ attr_accessor task_handle: ::String
447
+ SENSITIVE: []
448
+ end
449
+
450
+ class TagQueueRequest
451
+ attr_accessor queue_url: ::String
452
+ attr_accessor tags: ::Hash[::String, ::String]
453
+ SENSITIVE: []
454
+ end
455
+
456
+ class TooManyEntriesInBatchRequest
457
+ attr_accessor message: ::String
458
+ SENSITIVE: []
459
+ end
460
+
461
+ class UnsupportedOperation
462
+ attr_accessor message: ::String
463
+ SENSITIVE: []
464
+ end
465
+
466
+ class UntagQueueRequest
467
+ attr_accessor queue_url: ::String
468
+ attr_accessor tag_keys: ::Array[::String]
469
+ SENSITIVE: []
470
+ end
471
+ end
472
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SQS
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.60.0
4
+ version: 1.93.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-06 00:00:00.000000000 Z
11
+ date: 2025-02-18 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.177.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.177.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for Amazon Simple Queue Service (Amazon SQS). This
48
48
  gem is part of the AWS SDK for Ruby.
49
49
  email:
@@ -71,13 +71,20 @@ files:
71
71
  - lib/aws-sdk-sqs/queue_poller.rb
72
72
  - lib/aws-sdk-sqs/resource.rb
73
73
  - lib/aws-sdk-sqs/types.rb
74
+ - sig/client.rbs
75
+ - sig/errors.rbs
76
+ - sig/message.rbs
77
+ - sig/queue.rbs
78
+ - sig/resource.rbs
79
+ - sig/types.rbs
80
+ - sig/waiters.rbs
74
81
  homepage: https://github.com/aws/aws-sdk-ruby
75
82
  licenses:
76
83
  - Apache-2.0
77
84
  metadata:
78
85
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sqs
79
86
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sqs/CHANGELOG.md
80
- post_install_message:
87
+ post_install_message:
81
88
  rdoc_options: []
82
89
  require_paths:
83
90
  - lib
@@ -85,15 +92,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
85
92
  requirements:
86
93
  - - ">="
87
94
  - !ruby/object:Gem::Version
88
- version: '2.3'
95
+ version: '2.5'
89
96
  required_rubygems_version: !ruby/object:Gem::Requirement
90
97
  requirements:
91
98
  - - ">="
92
99
  - !ruby/object:Gem::Version
93
100
  version: '0'
94
101
  requirements: []
95
- rubygems_version: 3.1.6
96
- signing_key:
102
+ rubygems_version: 3.4.10
103
+ signing_key:
97
104
  specification_version: 4
98
105
  summary: AWS SDK for Ruby - Amazon SQS
99
106
  test_files: []