aws-sdk-sqs 1.28.0 → 1.33.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/lib/aws-sdk-sqs.rb +3 -2
- data/lib/aws-sdk-sqs/client.rb +54 -17
- data/lib/aws-sdk-sqs/message.rb +2 -2
- data/lib/aws-sdk-sqs/queue.rb +3 -2
- data/lib/aws-sdk-sqs/types.rb +61 -11
- 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: d09dd147d594c9ea815cfeef2ef993b5d1614aa24243d43ef26179e691c5814e
|
4
|
+
data.tar.gz: c4135562c41137321c00702c79c72eb90a0e6166d8346b567f73a5c53fcbb18d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f022a4cd55d70609ee0998aa4328e26e22620278ccd2e9db9a279504f3a785b88ee685d0d9697d3c95eb5d7ae9fcafa53e0e5e0972de70a81e95a0ba52e42f19
|
7
|
+
data.tar.gz: 445754c20fe6c72277ebbba0029d0b033b338b9cb7ab1256c8de9304707244d5cdf0aadd8fb2784088eb702240e75686929593da4376a6d5df48820d7ddedab2
|
data/lib/aws-sdk-sqs.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -46,9 +47,9 @@ require_relative 'aws-sdk-sqs/customizations'
|
|
46
47
|
#
|
47
48
|
# See {Errors} for more information.
|
48
49
|
#
|
49
|
-
#
|
50
|
+
# @!group service
|
50
51
|
module Aws::SQS
|
51
52
|
|
52
|
-
GEM_VERSION = '1.
|
53
|
+
GEM_VERSION = '1.33.0'
|
53
54
|
|
54
55
|
end
|
data/lib/aws-sdk-sqs/client.rb
CHANGED
@@ -89,13 +89,28 @@ module Aws::SQS
|
|
89
89
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
90
90
|
# credentials.
|
91
91
|
#
|
92
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
93
|
+
# shared file, such as `~/.aws/config`.
|
94
|
+
#
|
95
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
96
|
+
#
|
97
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
98
|
+
# assume a role after providing credentials via the web.
|
99
|
+
#
|
100
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
101
|
+
# access token generated from `aws login`.
|
102
|
+
#
|
103
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
104
|
+
# process that outputs to stdout.
|
105
|
+
#
|
92
106
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
93
107
|
# from an EC2 IMDS on an EC2 instance.
|
94
108
|
#
|
95
|
-
# * `Aws::
|
96
|
-
#
|
109
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
110
|
+
# instances running in ECS.
|
97
111
|
#
|
98
|
-
# * `Aws::
|
112
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
113
|
+
# from the Cognito Identity service.
|
99
114
|
#
|
100
115
|
# When `:credentials` are not configured directly, the following
|
101
116
|
# locations will be searched for credentials:
|
@@ -105,10 +120,10 @@ module Aws::SQS
|
|
105
120
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
106
121
|
# * `~/.aws/credentials`
|
107
122
|
# * `~/.aws/config`
|
108
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
109
|
-
# very aggressive. Construct and pass an instance of
|
110
|
-
# `Aws::InstanceProfileCredentails`
|
111
|
-
# timeouts.
|
123
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
124
|
+
# are very aggressive. Construct and pass an instance of
|
125
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
126
|
+
# enable retries and extended timeouts.
|
112
127
|
#
|
113
128
|
# @option options [required, String] :region
|
114
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -502,7 +517,7 @@ module Aws::SQS
|
|
502
517
|
#
|
503
518
|
# @option params [required, Integer] :visibility_timeout
|
504
519
|
# The new value for the message's visibility timeout (in seconds).
|
505
|
-
# Values
|
520
|
+
# Values range: `0` to `43200`. Maximum: 12 hours.
|
506
521
|
#
|
507
522
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
508
523
|
#
|
@@ -1222,6 +1237,15 @@ module Aws::SQS
|
|
1222
1237
|
# Returns a list of your queues that have the `RedrivePolicy` queue
|
1223
1238
|
# attribute configured with a dead-letter queue.
|
1224
1239
|
#
|
1240
|
+
# The `ListDeadLetterSourceQueues` methods supports pagination. Set
|
1241
|
+
# parameter `MaxResults` in the request to specify the maximum number of
|
1242
|
+
# results to be returned in the response. If you do not set
|
1243
|
+
# `MaxResults`, the response includes a maximum of 1,000 results. If you
|
1244
|
+
# set `MaxResults` and there are additional results to display, the
|
1245
|
+
# response includes a value for `NextToken`. Use `NextToken` as a
|
1246
|
+
# parameter in your next request to `ListDeadLetterSourceQueues` to
|
1247
|
+
# receive the next page of results.
|
1248
|
+
#
|
1225
1249
|
# For more information about using dead-letter queues, see [Using Amazon
|
1226
1250
|
# SQS Dead-Letter Queues][1] in the *Amazon Simple Queue Service
|
1227
1251
|
# Developer Guide*.
|
@@ -1239,7 +1263,9 @@ module Aws::SQS
|
|
1239
1263
|
# Pagination token to request the next set of results.
|
1240
1264
|
#
|
1241
1265
|
# @option params [Integer] :max_results
|
1242
|
-
# Maximum number of results to include in the response.
|
1266
|
+
# Maximum number of results to include in the response. Value range is 1
|
1267
|
+
# to 1000. You must set `MaxResults` to receive a value for `NextToken`
|
1268
|
+
# in the response.
|
1243
1269
|
#
|
1244
1270
|
# @return [Types::ListDeadLetterSourceQueuesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1245
1271
|
#
|
@@ -1313,10 +1339,18 @@ module Aws::SQS
|
|
1313
1339
|
req.send_request(options)
|
1314
1340
|
end
|
1315
1341
|
|
1316
|
-
# Returns a list of your queues
|
1317
|
-
#
|
1318
|
-
# `QueueNamePrefix` parameter, only queues with a name that
|
1319
|
-
# the specified value are returned.
|
1342
|
+
# Returns a list of your queues in the current region. The response
|
1343
|
+
# includes a maximum of 1,000 results. If you specify a value for the
|
1344
|
+
# optional `QueueNamePrefix` parameter, only queues with a name that
|
1345
|
+
# begins with the specified value are returned.
|
1346
|
+
#
|
1347
|
+
# The `listQueues` methods supports pagination. Set parameter
|
1348
|
+
# `MaxResults` in the request to specify the maximum number of results
|
1349
|
+
# to be returned in the response. If you do not set `MaxResults`, the
|
1350
|
+
# response includes a maximum of 1,000 results. If you set `MaxResults`
|
1351
|
+
# and there are additional results to display, the response includes a
|
1352
|
+
# value for `NextToken`. Use `NextToken` as a parameter in your next
|
1353
|
+
# request to `listQueues` to receive the next page of results.
|
1320
1354
|
#
|
1321
1355
|
# <note markdown="1"> Cross-account permissions don't apply to this action. For more
|
1322
1356
|
# information, see [Grant Cross-Account Permissions to a Role and a User
|
@@ -1338,7 +1372,9 @@ module Aws::SQS
|
|
1338
1372
|
# Pagination token to request the next set of results.
|
1339
1373
|
#
|
1340
1374
|
# @option params [Integer] :max_results
|
1341
|
-
# Maximum number of results to include in the response.
|
1375
|
+
# Maximum number of results to include in the response. Value range is 1
|
1376
|
+
# to 1000. You must set `MaxResults` to receive a value for `NextToken`
|
1377
|
+
# in the response.
|
1342
1378
|
#
|
1343
1379
|
# @return [Types::ListQueuesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1344
1380
|
#
|
@@ -1734,7 +1770,8 @@ module Aws::SQS
|
|
1734
1770
|
# Queue URLs and names are case-sensitive.
|
1735
1771
|
#
|
1736
1772
|
# @option params [required, String] :message_body
|
1737
|
-
# The message to send. The
|
1773
|
+
# The message to send. The minimum size is one character. The maximum
|
1774
|
+
# size is 256 KB.
|
1738
1775
|
#
|
1739
1776
|
# A message can include only XML, JSON, and unformatted text. The
|
1740
1777
|
# following Unicode characters are allowed:
|
@@ -1768,7 +1805,7 @@ module Aws::SQS
|
|
1768
1805
|
#
|
1769
1806
|
#
|
1770
1807
|
#
|
1771
|
-
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-
|
1808
|
+
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes
|
1772
1809
|
#
|
1773
1810
|
# @option params [Hash<String,Types::MessageSystemAttributeValue>] :message_system_attributes
|
1774
1811
|
# The message system attribute to send. Each message system attribute
|
@@ -2316,7 +2353,7 @@ module Aws::SQS
|
|
2316
2353
|
params: params,
|
2317
2354
|
config: config)
|
2318
2355
|
context[:gem_name] = 'aws-sdk-sqs'
|
2319
|
-
context[:gem_version] = '1.
|
2356
|
+
context[:gem_version] = '1.33.0'
|
2320
2357
|
Seahorse::Client::Request.new(handlers, context)
|
2321
2358
|
end
|
2322
2359
|
|
data/lib/aws-sdk-sqs/message.rb
CHANGED
@@ -109,7 +109,7 @@ module Aws::SQS
|
|
109
109
|
#
|
110
110
|
#
|
111
111
|
#
|
112
|
-
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-
|
112
|
+
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes
|
113
113
|
# @return [Hash<String,Types::MessageAttributeValue>]
|
114
114
|
def message_attributes
|
115
115
|
data[:message_attributes]
|
@@ -155,7 +155,7 @@ module Aws::SQS
|
|
155
155
|
# @param [Hash] options ({})
|
156
156
|
# @option options [required, Integer] :visibility_timeout
|
157
157
|
# The new value for the message's visibility timeout (in seconds).
|
158
|
-
# Values
|
158
|
+
# Values range: `0` to `43200`. Maximum: 12 hours.
|
159
159
|
# @return [EmptyStructure]
|
160
160
|
def change_visibility(options = {})
|
161
161
|
options = options.merge(
|
data/lib/aws-sdk-sqs/queue.rb
CHANGED
@@ -410,7 +410,8 @@ module Aws::SQS
|
|
410
410
|
# })
|
411
411
|
# @param [Hash] options ({})
|
412
412
|
# @option options [required, String] :message_body
|
413
|
-
# The message to send. The
|
413
|
+
# The message to send. The minimum size is one character. The maximum
|
414
|
+
# size is 256 KB.
|
414
415
|
#
|
415
416
|
# A message can include only XML, JSON, and unformatted text. The
|
416
417
|
# following Unicode characters are allowed:
|
@@ -442,7 +443,7 @@ module Aws::SQS
|
|
442
443
|
#
|
443
444
|
#
|
444
445
|
#
|
445
|
-
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-
|
446
|
+
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes
|
446
447
|
# @option options [Hash<String,Types::MessageSystemAttributeValue>] :message_system_attributes
|
447
448
|
# The message system attribute to send. Each message system attribute
|
448
449
|
# consists of a `Name`, `Type`, and `Value`.
|
data/lib/aws-sdk-sqs/types.rb
CHANGED
@@ -72,6 +72,7 @@ module Aws::SQS
|
|
72
72
|
:label,
|
73
73
|
:aws_account_ids,
|
74
74
|
:actions)
|
75
|
+
SENSITIVE = []
|
75
76
|
include Aws::Structure
|
76
77
|
end
|
77
78
|
|
@@ -114,6 +115,7 @@ module Aws::SQS
|
|
114
115
|
:sender_fault,
|
115
116
|
:code,
|
116
117
|
:message)
|
118
|
+
SENSITIVE = []
|
117
119
|
include Aws::Structure
|
118
120
|
end
|
119
121
|
|
@@ -148,6 +150,7 @@ module Aws::SQS
|
|
148
150
|
class ChangeMessageVisibilityBatchRequest < Struct.new(
|
149
151
|
:queue_url,
|
150
152
|
:entries)
|
153
|
+
SENSITIVE = []
|
151
154
|
include Aws::Structure
|
152
155
|
end
|
153
156
|
|
@@ -201,6 +204,7 @@ module Aws::SQS
|
|
201
204
|
:id,
|
202
205
|
:receipt_handle,
|
203
206
|
:visibility_timeout)
|
207
|
+
SENSITIVE = []
|
204
208
|
include Aws::Structure
|
205
209
|
end
|
206
210
|
|
@@ -221,6 +225,7 @@ module Aws::SQS
|
|
221
225
|
class ChangeMessageVisibilityBatchResult < Struct.new(
|
222
226
|
:successful,
|
223
227
|
:failed)
|
228
|
+
SENSITIVE = []
|
224
229
|
include Aws::Structure
|
225
230
|
end
|
226
231
|
|
@@ -235,6 +240,7 @@ module Aws::SQS
|
|
235
240
|
#
|
236
241
|
class ChangeMessageVisibilityBatchResultEntry < Struct.new(
|
237
242
|
:id)
|
243
|
+
SENSITIVE = []
|
238
244
|
include Aws::Structure
|
239
245
|
end
|
240
246
|
|
@@ -262,7 +268,7 @@ module Aws::SQS
|
|
262
268
|
#
|
263
269
|
# @!attribute [rw] visibility_timeout
|
264
270
|
# The new value for the message's visibility timeout (in seconds).
|
265
|
-
# Values
|
271
|
+
# Values range: `0` to `43200`. Maximum: 12 hours.
|
266
272
|
# @return [Integer]
|
267
273
|
#
|
268
274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ChangeMessageVisibilityRequest AWS API Documentation
|
@@ -271,6 +277,7 @@ module Aws::SQS
|
|
271
277
|
:queue_url,
|
272
278
|
:receipt_handle,
|
273
279
|
:visibility_timeout)
|
280
|
+
SENSITIVE = []
|
274
281
|
include Aws::Structure
|
275
282
|
end
|
276
283
|
|
@@ -478,6 +485,7 @@ module Aws::SQS
|
|
478
485
|
:queue_name,
|
479
486
|
:attributes,
|
480
487
|
:tags)
|
488
|
+
SENSITIVE = []
|
481
489
|
include Aws::Structure
|
482
490
|
end
|
483
491
|
|
@@ -491,6 +499,7 @@ module Aws::SQS
|
|
491
499
|
#
|
492
500
|
class CreateQueueResult < Struct.new(
|
493
501
|
:queue_url)
|
502
|
+
SENSITIVE = []
|
494
503
|
include Aws::Structure
|
495
504
|
end
|
496
505
|
|
@@ -522,6 +531,7 @@ module Aws::SQS
|
|
522
531
|
class DeleteMessageBatchRequest < Struct.new(
|
523
532
|
:queue_url,
|
524
533
|
:entries)
|
534
|
+
SENSITIVE = []
|
525
535
|
include Aws::Structure
|
526
536
|
end
|
527
537
|
|
@@ -557,6 +567,7 @@ module Aws::SQS
|
|
557
567
|
class DeleteMessageBatchRequestEntry < Struct.new(
|
558
568
|
:id,
|
559
569
|
:receipt_handle)
|
570
|
+
SENSITIVE = []
|
560
571
|
include Aws::Structure
|
561
572
|
end
|
562
573
|
|
@@ -577,6 +588,7 @@ module Aws::SQS
|
|
577
588
|
class DeleteMessageBatchResult < Struct.new(
|
578
589
|
:successful,
|
579
590
|
:failed)
|
591
|
+
SENSITIVE = []
|
580
592
|
include Aws::Structure
|
581
593
|
end
|
582
594
|
|
@@ -590,6 +602,7 @@ module Aws::SQS
|
|
590
602
|
#
|
591
603
|
class DeleteMessageBatchResultEntry < Struct.new(
|
592
604
|
:id)
|
605
|
+
SENSITIVE = []
|
593
606
|
include Aws::Structure
|
594
607
|
end
|
595
608
|
|
@@ -616,6 +629,7 @@ module Aws::SQS
|
|
616
629
|
class DeleteMessageRequest < Struct.new(
|
617
630
|
:queue_url,
|
618
631
|
:receipt_handle)
|
632
|
+
SENSITIVE = []
|
619
633
|
include Aws::Structure
|
620
634
|
end
|
621
635
|
|
@@ -636,6 +650,7 @@ module Aws::SQS
|
|
636
650
|
#
|
637
651
|
class DeleteQueueRequest < Struct.new(
|
638
652
|
:queue_url)
|
653
|
+
SENSITIVE = []
|
639
654
|
include Aws::Structure
|
640
655
|
end
|
641
656
|
|
@@ -785,6 +800,7 @@ module Aws::SQS
|
|
785
800
|
class GetQueueAttributesRequest < Struct.new(
|
786
801
|
:queue_url,
|
787
802
|
:attribute_names)
|
803
|
+
SENSITIVE = []
|
788
804
|
include Aws::Structure
|
789
805
|
end
|
790
806
|
|
@@ -798,6 +814,7 @@ module Aws::SQS
|
|
798
814
|
#
|
799
815
|
class GetQueueAttributesResult < Struct.new(
|
800
816
|
:attributes)
|
817
|
+
SENSITIVE = []
|
801
818
|
include Aws::Structure
|
802
819
|
end
|
803
820
|
|
@@ -826,6 +843,7 @@ module Aws::SQS
|
|
826
843
|
class GetQueueUrlRequest < Struct.new(
|
827
844
|
:queue_name,
|
828
845
|
:queue_owner_aws_account_id)
|
846
|
+
SENSITIVE = []
|
829
847
|
include Aws::Structure
|
830
848
|
end
|
831
849
|
|
@@ -844,6 +862,7 @@ module Aws::SQS
|
|
844
862
|
#
|
845
863
|
class GetQueueUrlResult < Struct.new(
|
846
864
|
:queue_url)
|
865
|
+
SENSITIVE = []
|
847
866
|
include Aws::Structure
|
848
867
|
end
|
849
868
|
|
@@ -892,7 +911,9 @@ module Aws::SQS
|
|
892
911
|
# @return [String]
|
893
912
|
#
|
894
913
|
# @!attribute [rw] max_results
|
895
|
-
# Maximum number of results to include in the response.
|
914
|
+
# Maximum number of results to include in the response. Value range is
|
915
|
+
# 1 to 1000. You must set `MaxResults` to receive a value for
|
916
|
+
# `NextToken` in the response.
|
896
917
|
# @return [Integer]
|
897
918
|
#
|
898
919
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ListDeadLetterSourceQueuesRequest AWS API Documentation
|
@@ -901,6 +922,7 @@ module Aws::SQS
|
|
901
922
|
:queue_url,
|
902
923
|
:next_token,
|
903
924
|
:max_results)
|
925
|
+
SENSITIVE = []
|
904
926
|
include Aws::Structure
|
905
927
|
end
|
906
928
|
|
@@ -912,7 +934,9 @@ module Aws::SQS
|
|
912
934
|
# @return [Array<String>]
|
913
935
|
#
|
914
936
|
# @!attribute [rw] next_token
|
915
|
-
# Pagination token to include in the next request.
|
937
|
+
# Pagination token to include in the next request. Token value is
|
938
|
+
# `null` if there are no additional results to request, or if you did
|
939
|
+
# not set `MaxResults` in the request.
|
916
940
|
# @return [String]
|
917
941
|
#
|
918
942
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ListDeadLetterSourceQueuesResult AWS API Documentation
|
@@ -920,6 +944,7 @@ module Aws::SQS
|
|
920
944
|
class ListDeadLetterSourceQueuesResult < Struct.new(
|
921
945
|
:queue_urls,
|
922
946
|
:next_token)
|
947
|
+
SENSITIVE = []
|
923
948
|
include Aws::Structure
|
924
949
|
end
|
925
950
|
|
@@ -938,6 +963,7 @@ module Aws::SQS
|
|
938
963
|
#
|
939
964
|
class ListQueueTagsRequest < Struct.new(
|
940
965
|
:queue_url)
|
966
|
+
SENSITIVE = []
|
941
967
|
include Aws::Structure
|
942
968
|
end
|
943
969
|
|
@@ -949,6 +975,7 @@ module Aws::SQS
|
|
949
975
|
#
|
950
976
|
class ListQueueTagsResult < Struct.new(
|
951
977
|
:tags)
|
978
|
+
SENSITIVE = []
|
952
979
|
include Aws::Structure
|
953
980
|
end
|
954
981
|
|
@@ -973,7 +1000,9 @@ module Aws::SQS
|
|
973
1000
|
# @return [String]
|
974
1001
|
#
|
975
1002
|
# @!attribute [rw] max_results
|
976
|
-
# Maximum number of results to include in the response.
|
1003
|
+
# Maximum number of results to include in the response. Value range is
|
1004
|
+
# 1 to 1000. You must set `MaxResults` to receive a value for
|
1005
|
+
# `NextToken` in the response.
|
977
1006
|
# @return [Integer]
|
978
1007
|
#
|
979
1008
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ListQueuesRequest AWS API Documentation
|
@@ -982,6 +1011,7 @@ module Aws::SQS
|
|
982
1011
|
:queue_name_prefix,
|
983
1012
|
:next_token,
|
984
1013
|
:max_results)
|
1014
|
+
SENSITIVE = []
|
985
1015
|
include Aws::Structure
|
986
1016
|
end
|
987
1017
|
|
@@ -993,7 +1023,9 @@ module Aws::SQS
|
|
993
1023
|
# @return [Array<String>]
|
994
1024
|
#
|
995
1025
|
# @!attribute [rw] next_token
|
996
|
-
# Pagination token to include in the next request.
|
1026
|
+
# Pagination token to include in the next request. Token value is
|
1027
|
+
# `null` if there are no additional results to request, or if you did
|
1028
|
+
# not set `MaxResults` in the request.
|
997
1029
|
# @return [String]
|
998
1030
|
#
|
999
1031
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ListQueuesResult AWS API Documentation
|
@@ -1001,6 +1033,7 @@ module Aws::SQS
|
|
1001
1033
|
class ListQueuesResult < Struct.new(
|
1002
1034
|
:queue_urls,
|
1003
1035
|
:next_token)
|
1036
|
+
SENSITIVE = []
|
1004
1037
|
include Aws::Structure
|
1005
1038
|
end
|
1006
1039
|
|
@@ -1072,7 +1105,7 @@ module Aws::SQS
|
|
1072
1105
|
#
|
1073
1106
|
#
|
1074
1107
|
#
|
1075
|
-
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-
|
1108
|
+
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes
|
1076
1109
|
# @return [Hash<String,Types::MessageAttributeValue>]
|
1077
1110
|
#
|
1078
1111
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/Message AWS API Documentation
|
@@ -1085,6 +1118,7 @@ module Aws::SQS
|
|
1085
1118
|
:attributes,
|
1086
1119
|
:md5_of_message_attributes,
|
1087
1120
|
:message_attributes)
|
1121
|
+
SENSITIVE = []
|
1088
1122
|
include Aws::Structure
|
1089
1123
|
end
|
1090
1124
|
|
@@ -1141,7 +1175,7 @@ module Aws::SQS
|
|
1141
1175
|
#
|
1142
1176
|
#
|
1143
1177
|
#
|
1144
|
-
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-
|
1178
|
+
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes
|
1145
1179
|
# @return [String]
|
1146
1180
|
#
|
1147
1181
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/MessageAttributeValue AWS API Documentation
|
@@ -1152,6 +1186,7 @@ module Aws::SQS
|
|
1152
1186
|
:string_list_values,
|
1153
1187
|
:binary_list_values,
|
1154
1188
|
:data_type)
|
1189
|
+
SENSITIVE = []
|
1155
1190
|
include Aws::Structure
|
1156
1191
|
end
|
1157
1192
|
|
@@ -1212,7 +1247,7 @@ module Aws::SQS
|
|
1212
1247
|
#
|
1213
1248
|
#
|
1214
1249
|
#
|
1215
|
-
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-
|
1250
|
+
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes
|
1216
1251
|
# @return [String]
|
1217
1252
|
#
|
1218
1253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/MessageSystemAttributeValue AWS API Documentation
|
@@ -1223,6 +1258,7 @@ module Aws::SQS
|
|
1223
1258
|
:string_list_values,
|
1224
1259
|
:binary_list_values,
|
1225
1260
|
:data_type)
|
1261
|
+
SENSITIVE = []
|
1226
1262
|
include Aws::Structure
|
1227
1263
|
end
|
1228
1264
|
|
@@ -1261,6 +1297,7 @@ module Aws::SQS
|
|
1261
1297
|
#
|
1262
1298
|
class PurgeQueueRequest < Struct.new(
|
1263
1299
|
:queue_url)
|
1300
|
+
SENSITIVE = []
|
1264
1301
|
include Aws::Structure
|
1265
1302
|
end
|
1266
1303
|
|
@@ -1484,6 +1521,7 @@ module Aws::SQS
|
|
1484
1521
|
:visibility_timeout,
|
1485
1522
|
:wait_time_seconds,
|
1486
1523
|
:receive_request_attempt_id)
|
1524
|
+
SENSITIVE = []
|
1487
1525
|
include Aws::Structure
|
1488
1526
|
end
|
1489
1527
|
|
@@ -1497,6 +1535,7 @@ module Aws::SQS
|
|
1497
1535
|
#
|
1498
1536
|
class ReceiveMessageResult < Struct.new(
|
1499
1537
|
:messages)
|
1538
|
+
SENSITIVE = []
|
1500
1539
|
include Aws::Structure
|
1501
1540
|
end
|
1502
1541
|
|
@@ -1524,6 +1563,7 @@ module Aws::SQS
|
|
1524
1563
|
class RemovePermissionRequest < Struct.new(
|
1525
1564
|
:queue_url,
|
1526
1565
|
:label)
|
1566
|
+
SENSITIVE = []
|
1527
1567
|
include Aws::Structure
|
1528
1568
|
end
|
1529
1569
|
|
@@ -1576,6 +1616,7 @@ module Aws::SQS
|
|
1576
1616
|
class SendMessageBatchRequest < Struct.new(
|
1577
1617
|
:queue_url,
|
1578
1618
|
:entries)
|
1619
|
+
SENSITIVE = []
|
1579
1620
|
include Aws::Structure
|
1580
1621
|
end
|
1581
1622
|
|
@@ -1648,7 +1689,7 @@ module Aws::SQS
|
|
1648
1689
|
#
|
1649
1690
|
#
|
1650
1691
|
#
|
1651
|
-
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-
|
1692
|
+
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes
|
1652
1693
|
# @return [Hash<String,Types::MessageAttributeValue>]
|
1653
1694
|
#
|
1654
1695
|
# @!attribute [rw] message_system_attributes
|
@@ -1775,6 +1816,7 @@ module Aws::SQS
|
|
1775
1816
|
:message_system_attributes,
|
1776
1817
|
:message_deduplication_id,
|
1777
1818
|
:message_group_id)
|
1819
|
+
SENSITIVE = []
|
1778
1820
|
include Aws::Structure
|
1779
1821
|
end
|
1780
1822
|
|
@@ -1796,6 +1838,7 @@ module Aws::SQS
|
|
1796
1838
|
class SendMessageBatchResult < Struct.new(
|
1797
1839
|
:successful,
|
1798
1840
|
:failed)
|
1841
|
+
SENSITIVE = []
|
1799
1842
|
include Aws::Structure
|
1800
1843
|
end
|
1801
1844
|
|
@@ -1865,6 +1908,7 @@ module Aws::SQS
|
|
1865
1908
|
:md5_of_message_attributes,
|
1866
1909
|
:md5_of_message_system_attributes,
|
1867
1910
|
:sequence_number)
|
1911
|
+
SENSITIVE = []
|
1868
1912
|
include Aws::Structure
|
1869
1913
|
end
|
1870
1914
|
|
@@ -1904,7 +1948,8 @@ module Aws::SQS
|
|
1904
1948
|
# @return [String]
|
1905
1949
|
#
|
1906
1950
|
# @!attribute [rw] message_body
|
1907
|
-
# The message to send. The
|
1951
|
+
# The message to send. The minimum size is one character. The maximum
|
1952
|
+
# size is 256 KB.
|
1908
1953
|
#
|
1909
1954
|
# A message can include only XML, JSON, and unformatted text. The
|
1910
1955
|
# following Unicode characters are allowed:
|
@@ -1940,7 +1985,7 @@ module Aws::SQS
|
|
1940
1985
|
#
|
1941
1986
|
#
|
1942
1987
|
#
|
1943
|
-
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-
|
1988
|
+
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes
|
1944
1989
|
# @return [Hash<String,Types::MessageAttributeValue>]
|
1945
1990
|
#
|
1946
1991
|
# @!attribute [rw] message_system_attributes
|
@@ -2067,6 +2112,7 @@ module Aws::SQS
|
|
2067
2112
|
:message_system_attributes,
|
2068
2113
|
:message_deduplication_id,
|
2069
2114
|
:message_group_id)
|
2115
|
+
SENSITIVE = []
|
2070
2116
|
include Aws::Structure
|
2071
2117
|
end
|
2072
2118
|
|
@@ -2131,6 +2177,7 @@ module Aws::SQS
|
|
2131
2177
|
:md5_of_message_system_attributes,
|
2132
2178
|
:message_id,
|
2133
2179
|
:sequence_number)
|
2180
|
+
SENSITIVE = []
|
2134
2181
|
include Aws::Structure
|
2135
2182
|
end
|
2136
2183
|
|
@@ -2280,6 +2327,7 @@ module Aws::SQS
|
|
2280
2327
|
class SetQueueAttributesRequest < Struct.new(
|
2281
2328
|
:queue_url,
|
2282
2329
|
:attributes)
|
2330
|
+
SENSITIVE = []
|
2283
2331
|
include Aws::Structure
|
2284
2332
|
end
|
2285
2333
|
|
@@ -2306,6 +2354,7 @@ module Aws::SQS
|
|
2306
2354
|
class TagQueueRequest < Struct.new(
|
2307
2355
|
:queue_url,
|
2308
2356
|
:tags)
|
2357
|
+
SENSITIVE = []
|
2309
2358
|
include Aws::Structure
|
2310
2359
|
end
|
2311
2360
|
|
@@ -2342,6 +2391,7 @@ module Aws::SQS
|
|
2342
2391
|
class UntagQueueRequest < Struct.new(
|
2343
2392
|
:queue_url,
|
2344
2393
|
:tag_keys)
|
2394
|
+
SENSITIVE = []
|
2345
2395
|
include Aws::Structure
|
2346
2396
|
end
|
2347
2397
|
|
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.
|
4
|
+
version: 1.33.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: 2020-
|
11
|
+
date: 2020-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|