aws-sdk-sqs 1.96.0 → 1.100.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-sqs/client.rb +74 -48
- data/lib/aws-sdk-sqs/queue.rb +47 -28
- data/lib/aws-sdk-sqs/types.rb +85 -49
- data/lib/aws-sdk-sqs.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95ade7d799cc3ecf24ffde396ab2dc4093349be131eab751276c0a3d7b983896
|
4
|
+
data.tar.gz: ef71f51a009e402eee6ef8c4ec09b279e54221f2843093845acdec030d997f20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed293cd0890daa6edbb840adeefd8b4ab39b5632d2fd525f55486c18d45f6f8ea8feb79d9bee1f2f523cb69f23cac9bbbeb3b1cb5c1a80503ed7fc6ec547009d
|
7
|
+
data.tar.gz: e631f70e30660bd2568a95b365864540ee2f2a22e5ad8d93ff34d7b80b0bea2f361362a69bf031a509be5ddf079e8caebbc88d419aba6ac3214a2278d3b2d62d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.100.0 (2025-08-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.99.0 (2025-07-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.98.0 (2025-07-25)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Documentation updates for Amazon SQS fair queues feature.
|
18
|
+
|
19
|
+
1.97.0 (2025-07-21)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.96.0 (2025-06-02)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.100.0
|
data/lib/aws-sdk-sqs/client.rb
CHANGED
@@ -99,8 +99,8 @@ module Aws::SQS
|
|
99
99
|
# class name or an instance of a plugin class.
|
100
100
|
#
|
101
101
|
# @option options [required, Aws::CredentialProvider] :credentials
|
102
|
-
# Your AWS credentials. This can be
|
103
|
-
# following classes:
|
102
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
103
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
104
104
|
#
|
105
105
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
106
106
|
# credentials.
|
@@ -128,22 +128,24 @@ module Aws::SQS
|
|
128
128
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
129
129
|
# from the Cognito Identity service.
|
130
130
|
#
|
131
|
-
# When `:credentials` are not configured directly, the following
|
132
|
-
# locations will be searched for credentials:
|
131
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
133
132
|
#
|
134
133
|
# * `Aws.config[:credentials]`
|
134
|
+
#
|
135
135
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
136
136
|
# `:account_id` options.
|
137
|
-
#
|
138
|
-
#
|
137
|
+
#
|
138
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
139
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
140
|
+
#
|
139
141
|
# * `~/.aws/credentials`
|
142
|
+
#
|
140
143
|
# * `~/.aws/config`
|
141
|
-
#
|
142
|
-
#
|
143
|
-
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
144
|
-
# enable retries and extended timeouts. Instance profile credential
|
145
|
-
#
|
146
|
-
# to true.
|
144
|
+
#
|
145
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
146
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
147
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
148
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
147
149
|
#
|
148
150
|
# @option options [required, String] :region
|
149
151
|
# The AWS region to connect to. The configured `:region` is
|
@@ -171,6 +173,11 @@ module Aws::SQS
|
|
171
173
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
172
174
|
# not retry instead of sleeping.
|
173
175
|
#
|
176
|
+
# @option options [Array<String>] :auth_scheme_preference
|
177
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
178
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
179
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
180
|
+
#
|
174
181
|
# @option options [Boolean] :client_side_monitoring (false)
|
175
182
|
# When `true`, client-side metrics will be collected for all API requests from
|
176
183
|
# this client.
|
@@ -257,8 +264,8 @@ module Aws::SQS
|
|
257
264
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
258
265
|
#
|
259
266
|
# @option options [String] :profile ("default")
|
260
|
-
# Used when loading credentials from the shared credentials file
|
261
|
-
#
|
267
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
268
|
+
# When not specified, 'default' is used.
|
262
269
|
#
|
263
270
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
264
271
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -378,8 +385,8 @@ module Aws::SQS
|
|
378
385
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
379
386
|
#
|
380
387
|
# @option options [Aws::TokenProvider] :token_provider
|
381
|
-
#
|
382
|
-
# following classes:
|
388
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
389
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
383
390
|
#
|
384
391
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
385
392
|
# tokens.
|
@@ -797,7 +804,7 @@ module Aws::SQS
|
|
797
804
|
# convert an existing standard queue into a FIFO queue. You must
|
798
805
|
# either create a new FIFO queue for your application or delete your
|
799
806
|
# existing standard queue and recreate it as a FIFO queue. For more
|
800
|
-
# information, see [Moving From a
|
807
|
+
# information, see [Moving From a standard queue to a FIFO queue][1]
|
801
808
|
# in the *Amazon SQS Developer Guide*.
|
802
809
|
#
|
803
810
|
# </note>
|
@@ -1918,8 +1925,7 @@ module Aws::SQS
|
|
1918
1925
|
# producer that calls the ` SendMessage ` action.
|
1919
1926
|
#
|
1920
1927
|
# * `MessageGroupId` – Returns the value provided by the producer that
|
1921
|
-
# calls the ` SendMessage ` action.
|
1922
|
-
# `MessageGroupId` are returned in sequence.
|
1928
|
+
# calls the ` SendMessage ` action.
|
1923
1929
|
#
|
1924
1930
|
# * `SequenceNumber` – Returns the value provided by Amazon SQS.
|
1925
1931
|
#
|
@@ -1961,8 +1967,7 @@ module Aws::SQS
|
|
1961
1967
|
# producer that calls the ` SendMessage ` action.
|
1962
1968
|
#
|
1963
1969
|
# * `MessageGroupId` – Returns the value provided by the producer that
|
1964
|
-
# calls the ` SendMessage ` action.
|
1965
|
-
# `MessageGroupId` are returned in sequence.
|
1970
|
+
# calls the ` SendMessage ` action.
|
1966
1971
|
#
|
1967
1972
|
# * `SequenceNumber` – Returns the value provided by Amazon SQS.
|
1968
1973
|
#
|
@@ -2095,7 +2100,8 @@ module Aws::SQS
|
|
2095
2100
|
# * While messages with a particular `MessageGroupId` are invisible, no
|
2096
2101
|
# more messages belonging to the same `MessageGroupId` are returned
|
2097
2102
|
# until the visibility timeout expires. You can still receive messages
|
2098
|
-
# with another `MessageGroupId` as long as
|
2103
|
+
# with another `MessageGroupId` from your FIFO queue as long as they
|
2104
|
+
# are visible.
|
2099
2105
|
#
|
2100
2106
|
# * If a caller of `ReceiveMessage` can't track the
|
2101
2107
|
# `ReceiveRequestAttemptId`, no retries work until the original
|
@@ -2218,7 +2224,7 @@ module Aws::SQS
|
|
2218
2224
|
#
|
2219
2225
|
# Amazon SQS does not throw an exception or completely reject the
|
2220
2226
|
# message if it contains invalid characters. Instead, it replaces those
|
2221
|
-
# invalid characters with
|
2227
|
+
# invalid characters with U+FFFD before storing the message in the
|
2222
2228
|
# queue, as long as the message body contains at least one valid
|
2223
2229
|
# character.
|
2224
2230
|
#
|
@@ -2244,7 +2250,7 @@ module Aws::SQS
|
|
2244
2250
|
#
|
2245
2251
|
# Amazon SQS does not throw an exception or completely reject the
|
2246
2252
|
# message if it contains invalid characters. Instead, it replaces those
|
2247
|
-
# invalid characters with
|
2253
|
+
# invalid characters with U+FFFD before storing the message in the
|
2248
2254
|
# queue, as long as the message body contains at least one valid
|
2249
2255
|
# character.
|
2250
2256
|
#
|
@@ -2346,34 +2352,54 @@ module Aws::SQS
|
|
2346
2352
|
# [2]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagededuplicationid-property.html
|
2347
2353
|
#
|
2348
2354
|
# @option params [String] :message_group_id
|
2349
|
-
#
|
2350
|
-
#
|
2351
|
-
#
|
2352
|
-
#
|
2353
|
-
#
|
2354
|
-
# processed
|
2355
|
-
#
|
2356
|
-
#
|
2357
|
-
#
|
2358
|
-
#
|
2359
|
-
#
|
2360
|
-
#
|
2361
|
-
#
|
2362
|
-
#
|
2363
|
-
#
|
2355
|
+
# `MessageGroupId` is an attribute used in Amazon SQS FIFO
|
2356
|
+
# (First-In-First-Out) and standard queues. In FIFO queues,
|
2357
|
+
# `MessageGroupId` organizes messages into distinct groups. Messages
|
2358
|
+
# within the same message group are always processed one at a time, in
|
2359
|
+
# strict order, ensuring that no two messages from the same group are
|
2360
|
+
# processed simultaneously. In standard queues, using `MessageGroupId`
|
2361
|
+
# enables fair queues. It is used to identify the tenant a message
|
2362
|
+
# belongs to, helping maintain consistent message dwell time across all
|
2363
|
+
# tenants during noisy neighbor events. Unlike FIFO queues, messages
|
2364
|
+
# with the same `MessageGroupId` can be processed in parallel,
|
2365
|
+
# maintaining the high throughput of standard queues.
|
2366
|
+
#
|
2367
|
+
# * **FIFO queues:** `MessageGroupId` acts as the tag that specifies
|
2368
|
+
# that a message belongs to a specific message group. Messages that
|
2369
|
+
# belong to the same message group are processed in a FIFO manner
|
2370
|
+
# (however, messages in different message groups might be processed
|
2371
|
+
# out of order). To interleave multiple ordered streams within a
|
2372
|
+
# single queue, use `MessageGroupId` values (for example, session data
|
2373
|
+
# for multiple users). In this scenario, multiple consumers can
|
2374
|
+
# process the queue, but the session data of each user is processed in
|
2375
|
+
# a FIFO fashion.
|
2376
|
+
#
|
2377
|
+
# If you do not provide a `MessageGroupId` when sending a message to a
|
2378
|
+
# FIFO queue, the action fails.
|
2379
|
+
#
|
2380
|
+
# `ReceiveMessage` might return messages with multiple
|
2364
2381
|
# `MessageGroupId` values. For each `MessageGroupId`, the messages are
|
2365
|
-
# sorted by time sent.
|
2366
|
-
#
|
2367
|
-
#
|
2368
|
-
#
|
2382
|
+
# sorted by time sent.
|
2383
|
+
#
|
2384
|
+
# * **Standard queues:**Use `MessageGroupId` in standard queues to
|
2385
|
+
# enable fair queues. The `MessageGroupId` identifies the tenant a
|
2386
|
+
# message belongs to. A tenant can be any entity that shares a queue
|
2387
|
+
# with others, such as your customer, a client application, or a
|
2388
|
+
# request type. When one tenant sends a disproportionately large
|
2389
|
+
# volume of messages or has messages that require longer processing
|
2390
|
+
# time, fair queues ensure other tenants' messages maintain low dwell
|
2391
|
+
# time. This preserves quality of service for all tenants while
|
2392
|
+
# maintaining the scalability and throughput of standard queues. We
|
2393
|
+
# recommend that you include a `MessageGroupId` in all messages when
|
2394
|
+
# using fair queues.
|
2395
|
+
#
|
2396
|
+
# The length of `MessageGroupId` is 128 characters. Valid values:
|
2397
|
+
# alphanumeric characters and punctuation ``
|
2369
2398
|
# (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~) ``.
|
2370
2399
|
#
|
2371
2400
|
# For best practices of using `MessageGroupId`, see [Using the
|
2372
2401
|
# MessageGroupId Property][1] in the *Amazon SQS Developer Guide*.
|
2373
2402
|
#
|
2374
|
-
# `MessageGroupId` is required for FIFO queues. You can't use it for
|
2375
|
-
# Standard queues.
|
2376
|
-
#
|
2377
2403
|
#
|
2378
2404
|
#
|
2379
2405
|
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagegroupid-property.html
|
@@ -2455,7 +2481,7 @@ module Aws::SQS
|
|
2455
2481
|
#
|
2456
2482
|
# Amazon SQS does not throw an exception or completely reject the
|
2457
2483
|
# message if it contains invalid characters. Instead, it replaces those
|
2458
|
-
# invalid characters with
|
2484
|
+
# invalid characters with U+FFFD before storing the message in the
|
2459
2485
|
# queue, as long as the message body contains at least one valid
|
2460
2486
|
# character.
|
2461
2487
|
#
|
@@ -2957,7 +2983,7 @@ module Aws::SQS
|
|
2957
2983
|
tracer: tracer
|
2958
2984
|
)
|
2959
2985
|
context[:gem_name] = 'aws-sdk-sqs'
|
2960
|
-
context[:gem_version] = '1.
|
2986
|
+
context[:gem_version] = '1.100.0'
|
2961
2987
|
Seahorse::Client::Request.new(handlers, context)
|
2962
2988
|
end
|
2963
2989
|
|
data/lib/aws-sdk-sqs/queue.rb
CHANGED
@@ -251,8 +251,7 @@ module Aws::SQS
|
|
251
251
|
# producer that calls the ` SendMessage ` action.
|
252
252
|
#
|
253
253
|
# * `MessageGroupId` – Returns the value provided by the producer that
|
254
|
-
# calls the ` SendMessage ` action.
|
255
|
-
# `MessageGroupId` are returned in sequence.
|
254
|
+
# calls the ` SendMessage ` action.
|
256
255
|
#
|
257
256
|
# * `SequenceNumber` – Returns the value provided by Amazon SQS.
|
258
257
|
#
|
@@ -293,8 +292,7 @@ module Aws::SQS
|
|
293
292
|
# producer that calls the ` SendMessage ` action.
|
294
293
|
#
|
295
294
|
# * `MessageGroupId` – Returns the value provided by the producer that
|
296
|
-
# calls the ` SendMessage ` action.
|
297
|
-
# `MessageGroupId` are returned in sequence.
|
295
|
+
# calls the ` SendMessage ` action.
|
298
296
|
#
|
299
297
|
# * `SequenceNumber` – Returns the value provided by Amazon SQS.
|
300
298
|
#
|
@@ -422,7 +420,8 @@ module Aws::SQS
|
|
422
420
|
# * While messages with a particular `MessageGroupId` are invisible, no
|
423
421
|
# more messages belonging to the same `MessageGroupId` are returned
|
424
422
|
# until the visibility timeout expires. You can still receive messages
|
425
|
-
# with another `MessageGroupId` as long as
|
423
|
+
# with another `MessageGroupId` from your FIFO queue as long as they
|
424
|
+
# are visible.
|
426
425
|
#
|
427
426
|
# * If a caller of `ReceiveMessage` can't track the
|
428
427
|
# `ReceiveRequestAttemptId`, no retries work until the original
|
@@ -518,7 +517,7 @@ module Aws::SQS
|
|
518
517
|
#
|
519
518
|
# Amazon SQS does not throw an exception or completely reject the
|
520
519
|
# message if it contains invalid characters. Instead, it replaces those
|
521
|
-
# invalid characters with
|
520
|
+
# invalid characters with U+FFFD before storing the message in the
|
522
521
|
# queue, as long as the message body contains at least one valid
|
523
522
|
# character.
|
524
523
|
#
|
@@ -615,34 +614,54 @@ module Aws::SQS
|
|
615
614
|
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues-exactly-once-processing.html
|
616
615
|
# [2]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagededuplicationid-property.html
|
617
616
|
# @option options [String] :message_group_id
|
618
|
-
#
|
619
|
-
#
|
620
|
-
#
|
621
|
-
#
|
622
|
-
#
|
623
|
-
# processed
|
624
|
-
#
|
625
|
-
#
|
626
|
-
#
|
627
|
-
#
|
628
|
-
#
|
629
|
-
#
|
630
|
-
#
|
631
|
-
#
|
632
|
-
#
|
617
|
+
# `MessageGroupId` is an attribute used in Amazon SQS FIFO
|
618
|
+
# (First-In-First-Out) and standard queues. In FIFO queues,
|
619
|
+
# `MessageGroupId` organizes messages into distinct groups. Messages
|
620
|
+
# within the same message group are always processed one at a time, in
|
621
|
+
# strict order, ensuring that no two messages from the same group are
|
622
|
+
# processed simultaneously. In standard queues, using `MessageGroupId`
|
623
|
+
# enables fair queues. It is used to identify the tenant a message
|
624
|
+
# belongs to, helping maintain consistent message dwell time across all
|
625
|
+
# tenants during noisy neighbor events. Unlike FIFO queues, messages
|
626
|
+
# with the same `MessageGroupId` can be processed in parallel,
|
627
|
+
# maintaining the high throughput of standard queues.
|
628
|
+
#
|
629
|
+
# * **FIFO queues:** `MessageGroupId` acts as the tag that specifies
|
630
|
+
# that a message belongs to a specific message group. Messages that
|
631
|
+
# belong to the same message group are processed in a FIFO manner
|
632
|
+
# (however, messages in different message groups might be processed
|
633
|
+
# out of order). To interleave multiple ordered streams within a
|
634
|
+
# single queue, use `MessageGroupId` values (for example, session data
|
635
|
+
# for multiple users). In this scenario, multiple consumers can
|
636
|
+
# process the queue, but the session data of each user is processed in
|
637
|
+
# a FIFO fashion.
|
638
|
+
#
|
639
|
+
# If you do not provide a `MessageGroupId` when sending a message to a
|
640
|
+
# FIFO queue, the action fails.
|
641
|
+
#
|
642
|
+
# `ReceiveMessage` might return messages with multiple
|
633
643
|
# `MessageGroupId` values. For each `MessageGroupId`, the messages are
|
634
|
-
# sorted by time sent.
|
635
|
-
#
|
636
|
-
#
|
637
|
-
#
|
644
|
+
# sorted by time sent.
|
645
|
+
#
|
646
|
+
# * **Standard queues:**Use `MessageGroupId` in standard queues to
|
647
|
+
# enable fair queues. The `MessageGroupId` identifies the tenant a
|
648
|
+
# message belongs to. A tenant can be any entity that shares a queue
|
649
|
+
# with others, such as your customer, a client application, or a
|
650
|
+
# request type. When one tenant sends a disproportionately large
|
651
|
+
# volume of messages or has messages that require longer processing
|
652
|
+
# time, fair queues ensure other tenants' messages maintain low dwell
|
653
|
+
# time. This preserves quality of service for all tenants while
|
654
|
+
# maintaining the scalability and throughput of standard queues. We
|
655
|
+
# recommend that you include a `MessageGroupId` in all messages when
|
656
|
+
# using fair queues.
|
657
|
+
#
|
658
|
+
# The length of `MessageGroupId` is 128 characters. Valid values:
|
659
|
+
# alphanumeric characters and punctuation ``
|
638
660
|
# (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~) ``.
|
639
661
|
#
|
640
662
|
# For best practices of using `MessageGroupId`, see [Using the
|
641
663
|
# MessageGroupId Property][1] in the *Amazon SQS Developer Guide*.
|
642
664
|
#
|
643
|
-
# `MessageGroupId` is required for FIFO queues. You can't use it for
|
644
|
-
# Standard queues.
|
645
|
-
#
|
646
665
|
#
|
647
666
|
#
|
648
667
|
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagegroupid-property.html
|
data/lib/aws-sdk-sqs/types.rb
CHANGED
@@ -1696,8 +1696,7 @@ module Aws::SQS
|
|
1696
1696
|
# producer that calls the ` SendMessage ` action.
|
1697
1697
|
#
|
1698
1698
|
# * `MessageGroupId` – Returns the value provided by the producer that
|
1699
|
-
# calls the ` SendMessage ` action.
|
1700
|
-
# `MessageGroupId` are returned in sequence.
|
1699
|
+
# calls the ` SendMessage ` action.
|
1701
1700
|
#
|
1702
1701
|
# * `SequenceNumber` – Returns the value provided by Amazon SQS.
|
1703
1702
|
#
|
@@ -1742,8 +1741,7 @@ module Aws::SQS
|
|
1742
1741
|
# producer that calls the ` SendMessage ` action.
|
1743
1742
|
#
|
1744
1743
|
# * `MessageGroupId` – Returns the value provided by the producer that
|
1745
|
-
# calls the ` SendMessage ` action.
|
1746
|
-
# `MessageGroupId` are returned in sequence.
|
1744
|
+
# calls the ` SendMessage ` action.
|
1747
1745
|
#
|
1748
1746
|
# * `SequenceNumber` – Returns the value provided by Amazon SQS.
|
1749
1747
|
#
|
@@ -1884,8 +1882,8 @@ module Aws::SQS
|
|
1884
1882
|
# * While messages with a particular `MessageGroupId` are invisible,
|
1885
1883
|
# no more messages belonging to the same `MessageGroupId` are
|
1886
1884
|
# returned until the visibility timeout expires. You can still
|
1887
|
-
# receive messages with another `MessageGroupId`
|
1888
|
-
#
|
1885
|
+
# receive messages with another `MessageGroupId` from your FIFO
|
1886
|
+
# queue as long as they are visible.
|
1889
1887
|
#
|
1890
1888
|
# * If a caller of `ReceiveMessage` can't track the
|
1891
1889
|
# `ReceiveRequestAttemptId`, no retries work until the original
|
@@ -2133,24 +2131,46 @@ module Aws::SQS
|
|
2133
2131
|
# @return [String]
|
2134
2132
|
#
|
2135
2133
|
# @!attribute [rw] message_group_id
|
2136
|
-
#
|
2137
|
-
#
|
2138
|
-
#
|
2139
|
-
#
|
2140
|
-
#
|
2141
|
-
#
|
2142
|
-
#
|
2143
|
-
#
|
2144
|
-
#
|
2145
|
-
#
|
2146
|
-
#
|
2147
|
-
#
|
2148
|
-
#
|
2149
|
-
#
|
2150
|
-
#
|
2134
|
+
# `MessageGroupId` is an attribute used in Amazon SQS FIFO
|
2135
|
+
# (First-In-First-Out) and standard queues. In FIFO queues,
|
2136
|
+
# `MessageGroupId` organizes messages into distinct groups. Messages
|
2137
|
+
# within the same message group are always processed one at a time, in
|
2138
|
+
# strict order, ensuring that no two messages from the same group are
|
2139
|
+
# processed simultaneously. In standard queues, using `MessageGroupId`
|
2140
|
+
# enables fair queues. It is used to identify the tenant a message
|
2141
|
+
# belongs to, helping maintain consistent message dwell time across
|
2142
|
+
# all tenants during noisy neighbor events. Unlike FIFO queues,
|
2143
|
+
# messages with the same `MessageGroupId` can be processed in
|
2144
|
+
# parallel, maintaining the high throughput of standard queues.
|
2145
|
+
#
|
2146
|
+
# * **FIFO queues:** `MessageGroupId` acts as the tag that specifies
|
2147
|
+
# that a message belongs to a specific message group. Messages that
|
2148
|
+
# belong to the same message group are processed in a FIFO manner
|
2149
|
+
# (however, messages in different message groups might be processed
|
2150
|
+
# out of order). To interleave multiple ordered streams within a
|
2151
|
+
# single queue, use `MessageGroupId` values (for example, session
|
2152
|
+
# data for multiple users). In this scenario, multiple consumers can
|
2153
|
+
# process the queue, but the session data of each user is processed
|
2154
|
+
# in a FIFO fashion.
|
2155
|
+
#
|
2156
|
+
# If you do not provide a `MessageGroupId` when sending a message to
|
2157
|
+
# a FIFO queue, the action fails.
|
2158
|
+
#
|
2159
|
+
# `ReceiveMessage` might return messages with multiple
|
2151
2160
|
# `MessageGroupId` values. For each `MessageGroupId`, the messages
|
2152
|
-
# are sorted by time sent.
|
2153
|
-
#
|
2161
|
+
# are sorted by time sent.
|
2162
|
+
#
|
2163
|
+
# * **Standard queues:**Use `MessageGroupId` in standard queues to
|
2164
|
+
# enable fair queues. The `MessageGroupId` identifies the tenant a
|
2165
|
+
# message belongs to. A tenant can be any entity that shares a queue
|
2166
|
+
# with others, such as your customer, a client application, or a
|
2167
|
+
# request type. When one tenant sends a disproportionately large
|
2168
|
+
# volume of messages or has messages that require longer processing
|
2169
|
+
# time, fair queues ensure other tenants' messages maintain low
|
2170
|
+
# dwell time. This preserves quality of service for all tenants
|
2171
|
+
# while maintaining the scalability and throughput of standard
|
2172
|
+
# queues. We recommend that you include a `MessageGroupId` in all
|
2173
|
+
# messages when using fair queues.
|
2154
2174
|
#
|
2155
2175
|
# The length of `MessageGroupId` is 128 characters. Valid values:
|
2156
2176
|
# alphanumeric characters and punctuation ``
|
@@ -2159,9 +2179,6 @@ module Aws::SQS
|
|
2159
2179
|
# For best practices of using `MessageGroupId`, see [Using the
|
2160
2180
|
# MessageGroupId Property][1] in the *Amazon SQS Developer Guide*.
|
2161
2181
|
#
|
2162
|
-
# `MessageGroupId` is required for FIFO queues. You can't use it for
|
2163
|
-
# Standard queues.
|
2164
|
-
#
|
2165
2182
|
#
|
2166
2183
|
#
|
2167
2184
|
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagegroupid-property.html
|
@@ -2291,7 +2308,7 @@ module Aws::SQS
|
|
2291
2308
|
#
|
2292
2309
|
# Amazon SQS does not throw an exception or completely reject the
|
2293
2310
|
# message if it contains invalid characters. Instead, it replaces
|
2294
|
-
# those invalid characters with
|
2311
|
+
# those invalid characters with U+FFFD before storing the message in
|
2295
2312
|
# the queue, as long as the message body contains at least one valid
|
2296
2313
|
# character.
|
2297
2314
|
#
|
@@ -2401,35 +2418,54 @@ module Aws::SQS
|
|
2401
2418
|
# @return [String]
|
2402
2419
|
#
|
2403
2420
|
# @!attribute [rw] message_group_id
|
2404
|
-
#
|
2405
|
-
#
|
2406
|
-
#
|
2407
|
-
#
|
2408
|
-
#
|
2409
|
-
#
|
2410
|
-
#
|
2411
|
-
#
|
2412
|
-
#
|
2413
|
-
#
|
2414
|
-
#
|
2415
|
-
#
|
2416
|
-
#
|
2417
|
-
#
|
2418
|
-
#
|
2421
|
+
# `MessageGroupId` is an attribute used in Amazon SQS FIFO
|
2422
|
+
# (First-In-First-Out) and standard queues. In FIFO queues,
|
2423
|
+
# `MessageGroupId` organizes messages into distinct groups. Messages
|
2424
|
+
# within the same message group are always processed one at a time, in
|
2425
|
+
# strict order, ensuring that no two messages from the same group are
|
2426
|
+
# processed simultaneously. In standard queues, using `MessageGroupId`
|
2427
|
+
# enables fair queues. It is used to identify the tenant a message
|
2428
|
+
# belongs to, helping maintain consistent message dwell time across
|
2429
|
+
# all tenants during noisy neighbor events. Unlike FIFO queues,
|
2430
|
+
# messages with the same `MessageGroupId` can be processed in
|
2431
|
+
# parallel, maintaining the high throughput of standard queues.
|
2432
|
+
#
|
2433
|
+
# * **FIFO queues:** `MessageGroupId` acts as the tag that specifies
|
2434
|
+
# that a message belongs to a specific message group. Messages that
|
2435
|
+
# belong to the same message group are processed in a FIFO manner
|
2436
|
+
# (however, messages in different message groups might be processed
|
2437
|
+
# out of order). To interleave multiple ordered streams within a
|
2438
|
+
# single queue, use `MessageGroupId` values (for example, session
|
2439
|
+
# data for multiple users). In this scenario, multiple consumers can
|
2440
|
+
# process the queue, but the session data of each user is processed
|
2441
|
+
# in a FIFO fashion.
|
2442
|
+
#
|
2443
|
+
# If you do not provide a `MessageGroupId` when sending a message to
|
2444
|
+
# a FIFO queue, the action fails.
|
2445
|
+
#
|
2446
|
+
# `ReceiveMessage` might return messages with multiple
|
2419
2447
|
# `MessageGroupId` values. For each `MessageGroupId`, the messages
|
2420
|
-
# are sorted by time sent.
|
2421
|
-
#
|
2448
|
+
# are sorted by time sent.
|
2449
|
+
#
|
2450
|
+
# * **Standard queues:**Use `MessageGroupId` in standard queues to
|
2451
|
+
# enable fair queues. The `MessageGroupId` identifies the tenant a
|
2452
|
+
# message belongs to. A tenant can be any entity that shares a queue
|
2453
|
+
# with others, such as your customer, a client application, or a
|
2454
|
+
# request type. When one tenant sends a disproportionately large
|
2455
|
+
# volume of messages or has messages that require longer processing
|
2456
|
+
# time, fair queues ensure other tenants' messages maintain low
|
2457
|
+
# dwell time. This preserves quality of service for all tenants
|
2458
|
+
# while maintaining the scalability and throughput of standard
|
2459
|
+
# queues. We recommend that you include a `MessageGroupId` in all
|
2460
|
+
# messages when using fair queues.
|
2422
2461
|
#
|
2423
|
-
# The
|
2424
|
-
#
|
2462
|
+
# The length of `MessageGroupId` is 128 characters. Valid values:
|
2463
|
+
# alphanumeric characters and punctuation ``
|
2425
2464
|
# (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~) ``.
|
2426
2465
|
#
|
2427
2466
|
# For best practices of using `MessageGroupId`, see [Using the
|
2428
2467
|
# MessageGroupId Property][1] in the *Amazon SQS Developer Guide*.
|
2429
2468
|
#
|
2430
|
-
# `MessageGroupId` is required for FIFO queues. You can't use it for
|
2431
|
-
# Standard queues.
|
2432
|
-
#
|
2433
2469
|
#
|
2434
2470
|
#
|
2435
2471
|
# [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagegroupid-property.html
|
data/lib/aws-sdk-sqs.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.100.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.228.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|