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.
@@ -7,36 +7,36 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
- require 'seahorse/client/plugins/content_length.rb'
11
- require 'aws-sdk-core/plugins/credentials_configuration.rb'
12
- require 'aws-sdk-core/plugins/logging.rb'
13
- require 'aws-sdk-core/plugins/param_converter.rb'
14
- require 'aws-sdk-core/plugins/param_validator.rb'
15
- require 'aws-sdk-core/plugins/user_agent.rb'
16
- require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
17
- require 'aws-sdk-core/plugins/retry_errors.rb'
18
- require 'aws-sdk-core/plugins/global_configuration.rb'
19
- require 'aws-sdk-core/plugins/regional_endpoint.rb'
20
- require 'aws-sdk-core/plugins/endpoint_discovery.rb'
21
- require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
- require 'aws-sdk-core/plugins/response_paging.rb'
23
- require 'aws-sdk-core/plugins/stub_responses.rb'
24
- require 'aws-sdk-core/plugins/idempotency_token.rb'
25
- require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
- require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
- require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
- require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
- require 'aws-sdk-core/plugins/http_checksum.rb'
30
- require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
- require 'aws-sdk-core/plugins/request_compression.rb'
32
- require 'aws-sdk-core/plugins/defaults_mode.rb'
33
- require 'aws-sdk-core/plugins/recursion_detection.rb'
34
- require 'aws-sdk-core/plugins/sign.rb'
35
- require 'aws-sdk-core/plugins/protocols/query.rb'
36
- require 'aws-sdk-sqs/plugins/queue_urls.rb'
37
- require 'aws-sdk-sqs/plugins/md5s.rb'
38
-
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:sqs)
10
+ require 'seahorse/client/plugins/content_length'
11
+ require 'aws-sdk-core/plugins/credentials_configuration'
12
+ require 'aws-sdk-core/plugins/logging'
13
+ require 'aws-sdk-core/plugins/param_converter'
14
+ require 'aws-sdk-core/plugins/param_validator'
15
+ require 'aws-sdk-core/plugins/user_agent'
16
+ require 'aws-sdk-core/plugins/helpful_socket_errors'
17
+ require 'aws-sdk-core/plugins/retry_errors'
18
+ require 'aws-sdk-core/plugins/global_configuration'
19
+ require 'aws-sdk-core/plugins/regional_endpoint'
20
+ require 'aws-sdk-core/plugins/endpoint_discovery'
21
+ require 'aws-sdk-core/plugins/endpoint_pattern'
22
+ require 'aws-sdk-core/plugins/response_paging'
23
+ require 'aws-sdk-core/plugins/stub_responses'
24
+ require 'aws-sdk-core/plugins/idempotency_token'
25
+ require 'aws-sdk-core/plugins/invocation_id'
26
+ require 'aws-sdk-core/plugins/jsonvalue_converter'
27
+ require 'aws-sdk-core/plugins/client_metrics_plugin'
28
+ require 'aws-sdk-core/plugins/client_metrics_send_plugin'
29
+ require 'aws-sdk-core/plugins/transfer_encoding'
30
+ require 'aws-sdk-core/plugins/http_checksum'
31
+ require 'aws-sdk-core/plugins/checksum_algorithm'
32
+ require 'aws-sdk-core/plugins/request_compression'
33
+ require 'aws-sdk-core/plugins/defaults_mode'
34
+ require 'aws-sdk-core/plugins/recursion_detection'
35
+ require 'aws-sdk-core/plugins/telemetry'
36
+ require 'aws-sdk-core/plugins/sign'
37
+ require 'aws-sdk-core/plugins/protocols/json_rpc'
38
+ require 'aws-sdk-sqs/plugins/queue_urls'
39
+ require 'aws-sdk-sqs/plugins/md5s'
40
40
 
41
41
  module Aws::SQS
42
42
  # An API client for SQS. To construct a client, you need to configure a `:region` and `:credentials`.
@@ -74,6 +74,7 @@ module Aws::SQS
74
74
  add_plugin(Aws::Plugins::ResponsePaging)
75
75
  add_plugin(Aws::Plugins::StubResponses)
76
76
  add_plugin(Aws::Plugins::IdempotencyToken)
77
+ add_plugin(Aws::Plugins::InvocationId)
77
78
  add_plugin(Aws::Plugins::JsonvalueConverter)
78
79
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
79
80
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -83,14 +84,20 @@ module Aws::SQS
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
- add_plugin(Aws::Plugins::Protocols::Query)
89
+ add_plugin(Aws::Plugins::Protocols::JsonRpc)
88
90
  add_plugin(Aws::SQS::Plugins::QueueUrls)
89
91
  add_plugin(Aws::SQS::Plugins::Md5s)
90
92
  add_plugin(Aws::SQS::Plugins::Endpoints)
91
93
 
92
94
  # @overload initialize(options)
93
95
  # @param [Hash] options
96
+ #
97
+ # @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
98
+ # A list of plugins to apply to the client. Each plugin is either a
99
+ # class name or an instance of a plugin class.
100
+ #
94
101
  # @option options [required, Aws::CredentialProvider] :credentials
95
102
  # Your AWS credentials. This can be an instance of any one of the
96
103
  # following classes:
@@ -125,13 +132,15 @@ module Aws::SQS
125
132
  # locations will be searched for credentials:
126
133
  #
127
134
  # * `Aws.config[:credentials]`
128
- # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options.
129
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
135
+ # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
136
+ # `:account_id` options.
137
+ # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
138
+ # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
130
139
  # * `~/.aws/credentials`
131
140
  # * `~/.aws/config`
132
141
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
133
142
  # are very aggressive. Construct and pass an instance of
134
- # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
143
+ # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
135
144
  # enable retries and extended timeouts. Instance profile credential
136
145
  # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
137
146
  # to true.
@@ -150,6 +159,8 @@ module Aws::SQS
150
159
  #
151
160
  # @option options [String] :access_key_id
152
161
  #
162
+ # @option options [String] :account_id
163
+ #
153
164
  # @option options [Boolean] :active_endpoint_cache (false)
154
165
  # When set to `true`, a thread polling for endpoints will be running in
155
166
  # the background every 60 secs (default). Defaults to `false`.
@@ -200,10 +211,16 @@ module Aws::SQS
200
211
  # When set to 'true' the request body will not be compressed
201
212
  # for supported operations.
202
213
  #
203
- # @option options [String] :endpoint
204
- # The client endpoint is normally constructed from the `:region`
205
- # option. You should only configure an `:endpoint` when connecting
206
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
214
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
215
+ # Normally you should not configure the `:endpoint` option
216
+ # directly. This is normally constructed from the `:region`
217
+ # option. Configuring `:endpoint` is normally reserved for
218
+ # connecting to test or custom endpoints. The endpoint should
219
+ # be a URI formatted like:
220
+ #
221
+ # 'http://example.com'
222
+ # 'https://example.com'
223
+ # 'http://example.com:123'
207
224
  #
208
225
  # @option options [Integer] :endpoint_cache_max_entries (1000)
209
226
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -220,6 +237,10 @@ module Aws::SQS
220
237
  # @option options [Boolean] :endpoint_discovery (false)
221
238
  # When set to `true`, endpoint discovery will be enabled for operations when available.
222
239
  #
240
+ # @option options [Boolean] :ignore_configured_endpoint_urls
241
+ # Setting to true disables use of endpoint URLs provided via environment
242
+ # variables and the shared configuration file.
243
+ #
223
244
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
224
245
  # The log formatter.
225
246
  #
@@ -240,11 +261,34 @@ module Aws::SQS
240
261
  # Used when loading credentials from the shared credentials file
241
262
  # at HOME/.aws/credentials. When not specified, 'default' is used.
242
263
  #
264
+ # @option options [String] :request_checksum_calculation ("when_supported")
265
+ # Determines when a checksum will be calculated for request payloads. Values are:
266
+ #
267
+ # * `when_supported` - (default) When set, a checksum will be
268
+ # calculated for all request payloads of operations modeled with the
269
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
270
+ # `requestAlgorithmMember` is modeled.
271
+ # * `when_required` - When set, a checksum will only be calculated for
272
+ # request payloads of operations modeled with the `httpChecksum` trait where
273
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
274
+ # is modeled and supplied.
275
+ #
243
276
  # @option options [Integer] :request_min_compression_size_bytes (10240)
244
277
  # The minimum size in bytes that triggers compression for request
245
278
  # bodies. The value must be non-negative integer value between 0
246
279
  # and 10485780 bytes inclusive.
247
280
  #
281
+ # @option options [String] :response_checksum_validation ("when_supported")
282
+ # Determines when checksum validation will be performed on response payloads. Values are:
283
+ #
284
+ # * `when_supported` - (default) When set, checksum validation is performed on all
285
+ # response payloads of operations modeled with the `httpChecksum` trait where
286
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
287
+ # are supported.
288
+ # * `when_required` - When set, checksum validation is not performed on
289
+ # response payloads of operations unless the checksum algorithm is supported and
290
+ # the `requestValidationModeMember` member is set to `ENABLED`.
291
+ #
248
292
  # @option options [Proc] :retry_backoff
249
293
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
250
294
  # This option is only used in the `legacy` retry mode.
@@ -289,16 +333,32 @@ module Aws::SQS
289
333
  # throttling. This is a provisional mode that may change behavior
290
334
  # in the future.
291
335
  #
292
- #
293
336
  # @option options [String] :sdk_ua_app_id
294
337
  # A unique and opaque application ID that is appended to the
295
- # User-Agent header as app/<sdk_ua_app_id>. It should have a
296
- # maximum length of 50.
338
+ # User-Agent header as app/sdk_ua_app_id. It should have a
339
+ # maximum length of 50. This variable is sourced from environment
340
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
297
341
  #
298
342
  # @option options [String] :secret_access_key
299
343
  #
300
344
  # @option options [String] :session_token
301
345
  #
346
+ # @option options [Array] :sigv4a_signing_region_set
347
+ # A list of regions that should be signed with SigV4a signing. When
348
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
349
+ # in the following locations:
350
+ #
351
+ # * `Aws.config[:sigv4a_signing_region_set]`
352
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
353
+ # * `~/.aws/config`
354
+ #
355
+ # @option options [Boolean] :simple_json (false)
356
+ # Disables request parameter conversion, validation, and formatting.
357
+ # Also disables response data type conversions. The request parameters
358
+ # hash must be formatted exactly as the API expects.This option is useful
359
+ # when you want to ensure the highest level of performance by avoiding
360
+ # overhead of walking request parameters and response data structures.
361
+ #
302
362
  # @option options [Boolean] :stub_responses (false)
303
363
  # Causes the client to return stubbed responses. By default
304
364
  # fake responses are generated and returned. You can specify
@@ -308,6 +368,16 @@ module Aws::SQS
308
368
  # ** Please note ** When response stubbing is enabled, no HTTP
309
369
  # requests are made, and retries are disabled.
310
370
  #
371
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
372
+ # Allows you to provide a telemetry provider, which is used to
373
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
374
+ # will not record or emit any telemetry data. The SDK supports the
375
+ # following telemetry providers:
376
+ #
377
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
378
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
379
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
380
+ #
311
381
  # @option options [Aws::TokenProvider] :token_provider
312
382
  # A Bearer Token Provider. This can be an instance of any one of the
313
383
  # following classes:
@@ -341,52 +411,75 @@ module Aws::SQS
341
411
  # not match.
342
412
  #
343
413
  # @option options [Aws::SQS::EndpointProvider] :endpoint_provider
344
- # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::SQS::EndpointParameters`
345
- #
346
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
347
- # requests through. Formatted like 'http://proxy.com:123'.
348
- #
349
- # @option options [Float] :http_open_timeout (15) The number of
350
- # seconds to wait when opening a HTTP session before raising a
351
- # `Timeout::Error`.
352
- #
353
- # @option options [Float] :http_read_timeout (60) The default
354
- # number of seconds to wait for response data. This value can
355
- # safely be set per-request on the session.
356
- #
357
- # @option options [Float] :http_idle_timeout (5) The number of
358
- # seconds a connection is allowed to sit idle before it is
359
- # considered stale. Stale connections are closed and removed
360
- # from the pool before making a request.
414
+ # The endpoint provider used to resolve endpoints. Any object that responds to
415
+ # `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
416
+ # `Aws::SQS::EndpointParameters`.
417
+ #
418
+ # @option options [Float] :http_continue_timeout (1)
419
+ # The number of seconds to wait for a 100-continue response before sending the
420
+ # request body. This option has no effect unless the request has "Expect"
421
+ # header set to "100-continue". Defaults to `nil` which disables this
422
+ # behaviour. This value can safely be set per request on the session.
423
+ #
424
+ # @option options [Float] :http_idle_timeout (5)
425
+ # The number of seconds a connection is allowed to sit idle before it
426
+ # is considered stale. Stale connections are closed and removed from the
427
+ # pool before making a request.
428
+ #
429
+ # @option options [Float] :http_open_timeout (15)
430
+ # The default number of seconds to wait for response data.
431
+ # This value can safely be set per-request on the session.
432
+ #
433
+ # @option options [URI::HTTP,String] :http_proxy
434
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
435
+ #
436
+ # @option options [Float] :http_read_timeout (60)
437
+ # The default number of seconds to wait for response data.
438
+ # This value can safely be set per-request on the session.
439
+ #
440
+ # @option options [Boolean] :http_wire_trace (false)
441
+ # When `true`, HTTP debug output will be sent to the `:logger`.
442
+ #
443
+ # @option options [Proc] :on_chunk_received
444
+ # When a Proc object is provided, it will be used as callback when each chunk
445
+ # of the response body is received. It provides three arguments: the chunk,
446
+ # the number of bytes received, and the total number of
447
+ # bytes in the response (or nil if the server did not send a `content-length`).
448
+ #
449
+ # @option options [Proc] :on_chunk_sent
450
+ # When a Proc object is provided, it will be used as callback when each chunk
451
+ # of the request body is sent. It provides three arguments: the chunk,
452
+ # the number of bytes read from the body, and the total number of
453
+ # bytes in the body.
454
+ #
455
+ # @option options [Boolean] :raise_response_errors (true)
456
+ # When `true`, response errors are raised.
457
+ #
458
+ # @option options [String] :ssl_ca_bundle
459
+ # Full path to the SSL certificate authority bundle file that should be used when
460
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
461
+ # `:ssl_ca_directory` the the system default will be used if available.
462
+ #
463
+ # @option options [String] :ssl_ca_directory
464
+ # Full path of the directory that contains the unbundled SSL certificate
465
+ # authority files for verifying peer certificates. If you do
466
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
467
+ # default will be used if available.
361
468
  #
362
- # @option options [Float] :http_continue_timeout (1) The number of
363
- # seconds to wait for a 100-continue response before sending the
364
- # request body. This option has no effect unless the request has
365
- # "Expect" header set to "100-continue". Defaults to `nil` which
366
- # disables this behaviour. This value can safely be set per
367
- # request on the session.
469
+ # @option options [String] :ssl_ca_store
470
+ # Sets the X509::Store to verify peer certificate.
368
471
  #
369
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
370
- # in seconds.
472
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
473
+ # Sets a client certificate when creating http connections.
371
474
  #
372
- # @option options [Boolean] :http_wire_trace (false) When `true`,
373
- # HTTP debug output will be sent to the `:logger`.
475
+ # @option options [OpenSSL::PKey] :ssl_key
476
+ # Sets a client key when creating http connections.
374
477
  #
375
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
376
- # SSL peer certificates are verified when establishing a
377
- # connection.
478
+ # @option options [Float] :ssl_timeout
479
+ # Sets the SSL timeout in seconds
378
480
  #
379
- # @option options [String] :ssl_ca_bundle Full path to the SSL
380
- # certificate authority bundle file that should be used when
381
- # verifying peer certificates. If you do not pass
382
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
383
- # will be used if available.
384
- #
385
- # @option options [String] :ssl_ca_directory Full path of the
386
- # directory that contains the unbundled SSL certificate
387
- # authority files for verifying peer certificates. If you do
388
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
389
- # system default will be used if available.
481
+ # @option options [Boolean] :ssl_verify_peer (true)
482
+ # When `true`, SSL peer certificates are verified when establishing a connection.
390
483
  #
391
484
  def initialize(*args)
392
485
  super
@@ -493,17 +586,26 @@ module Aws::SQS
493
586
  req.send_request(options)
494
587
  end
495
588
 
496
- # Cancels a specified message movement task.
589
+ # Cancels a specified message movement task. A message movement can only
590
+ # be cancelled when the current status is RUNNING. Cancelling a message
591
+ # movement task does not revert the messages that have already been
592
+ # moved. It can only stop the messages that have not been moved yet.
497
593
  #
498
- # <note markdown="1"> * A message movement can only be cancelled when the current status is
499
- # RUNNING.
594
+ # <note markdown="1"> * This action is currently limited to supporting message redrive from
595
+ # [dead-letter queues (DLQs)][1] only. In this context, the source
596
+ # queue is the dead-letter queue (DLQ), while the destination queue
597
+ # can be the original source queue (from which the messages were
598
+ # driven to the dead-letter-queue), or a custom destination queue.
500
599
  #
501
- # * Cancelling a message movement task does not revert the messages that
502
- # have already been moved. It can only stop the messages that have not
503
- # been moved yet.
600
+ # * Only one active message movement task is supported per queue at any
601
+ # given time.
504
602
  #
505
603
  # </note>
506
604
  #
605
+ #
606
+ #
607
+ # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html
608
+ #
507
609
  # @option params [required, String] :task_handle
508
610
  # An identifier associated with a message movement task.
509
611
  #
@@ -573,7 +675,7 @@ module Aws::SQS
573
675
  # increase the number of queues you use to process your messages. To
574
676
  # request a limit increase, [file a support request][2].
575
677
  #
576
- # For FIFO queues, there can be a maximum of 20,000 in flight messages
678
+ # For FIFO queues, there can be a maximum of 120,000 in flight messages
577
679
  # (received from a queue by a consumer, but not yet deleted from the
578
680
  # queue). If you reach this limit, Amazon SQS returns no error messages.
579
681
  #
@@ -716,20 +818,24 @@ module Aws::SQS
716
818
  #
717
819
  # </note>
718
820
  #
719
- # To get the queue URL, use the ` GetQueueUrl ` action. ` GetQueueUrl `
720
- # requires only the `QueueName` parameter. be aware of existing queue
721
- # names:
821
+ # To retrieve the URL of a queue, use the [ `GetQueueUrl` ][3] action.
822
+ # This action only requires the [ `QueueName` ][4] parameter.
823
+ #
824
+ # When creating queues, keep the following points in mind:
722
825
  #
723
- # * If you provide the name of an existing queue along with the exact
724
- # names and values of all the queue's attributes, `CreateQueue`
725
- # returns the queue URL for the existing queue.
826
+ # * If you specify the name of an existing queue and provide the exact
827
+ # same names and values for all its attributes, the [ `CreateQueue`
828
+ # ][5] action will return the URL of the existing queue instead of
829
+ # creating a new one.
726
830
  #
727
- # * If the queue name, attribute names, or attribute values don't match
728
- # an existing queue, `CreateQueue` returns an error.
831
+ # * If you attempt to create a queue with a name that already exists but
832
+ # with different attribute names or values, the `CreateQueue` action
833
+ # will return an error. This ensures that existing queues are not
834
+ # inadvertently altered.
729
835
  #
730
836
  # <note markdown="1"> Cross-account permissions don't apply to this action. For more
731
837
  # information, see [Grant cross-account permissions to a role and a
732
- # username][3] in the *Amazon SQS Developer Guide*.
838
+ # username][6] in the *Amazon SQS Developer Guide*.
733
839
  #
734
840
  # </note>
735
841
  #
@@ -737,7 +843,10 @@ module Aws::SQS
737
843
  #
738
844
  # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-moving
739
845
  # [2]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/limits-queues.html
740
- # [3]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name
846
+ # [3]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_GetQueueUrl.html
847
+ # [4]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html#API_CreateQueue_RequestSyntax
848
+ # [5]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html
849
+ # [6]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name
741
850
  #
742
851
  # @option params [required, String] :queue_name
743
852
  # The name of the new queue. The following limits apply to this name:
@@ -805,7 +914,6 @@ module Aws::SQS
805
914
  # Default: 10. When the `ReceiveCount` for a message exceeds the
806
915
  # `maxReceiveCount` for a queue, Amazon SQS moves the message to the
807
916
  # dead-letter-queue.
808
- #
809
917
  # * `RedriveAllowPolicy` – The string that includes the parameters for
810
918
  # the permissions for the dead-letter queue redrive permission and
811
919
  # which source queues can specify dead-letter queues as a JSON object.
@@ -824,7 +932,6 @@ module Aws::SQS
824
932
  #
825
933
  # * `byQueue` – Only queues specified by the `sourceQueueArns`
826
934
  # parameter can specify this queue as the dead-letter queue.
827
- #
828
935
  # * `sourceQueueArns` – The Amazon Resource Names (ARN)s of the source
829
936
  # queues that can specify this queue as the dead-letter queue and
830
937
  # redrive messages. You can specify this parameter only when the
@@ -896,7 +1003,6 @@ module Aws::SQS
896
1003
  #
897
1004
  # * If the queue has `ContentBasedDeduplication` set, your
898
1005
  # `MessageDeduplicationId` overrides the generated one.
899
- #
900
1006
  # * When `ContentBasedDeduplication` is in effect, messages with
901
1007
  # identical content sent within the deduplication interval are
902
1008
  # treated as duplicates and only one copy of the message is
@@ -1024,12 +1130,14 @@ module Aws::SQS
1024
1130
  # automatically deletes messages left in a queue longer than the
1025
1131
  # retention period configured for the queue.
1026
1132
  #
1027
- # <note markdown="1"> The `ReceiptHandle` is associated with a *specific instance* of
1028
- # receiving a message. If you receive a message more than once, the
1029
- # `ReceiptHandle` is different each time you receive a message. When you
1030
- # use the `DeleteMessage` action, you must provide the most recently
1031
- # received `ReceiptHandle` for the message (otherwise, the request
1032
- # succeeds, but the message will not be deleted).
1133
+ # <note markdown="1"> Each time you receive a message, meaning when a consumer retrieves a
1134
+ # message from the queue, it comes with a unique `ReceiptHandle`. If you
1135
+ # receive the same message more than once, you will get a different
1136
+ # `ReceiptHandle` each time. When you want to delete a message using the
1137
+ # `DeleteMessage` action, you must use the `ReceiptHandle` from the most
1138
+ # recent time you received the message. If you use an old
1139
+ # `ReceiptHandle`, the request will succeed, but the message might not
1140
+ # be deleted.
1033
1141
  #
1034
1142
  # For standard queues, it is possible to receive a message even after
1035
1143
  # you delete it. This might happen on rare occasions if one of the
@@ -1269,7 +1377,6 @@ module Aws::SQS
1269
1377
  # Default: 10. When the `ReceiveCount` for a message exceeds the
1270
1378
  # `maxReceiveCount` for a queue, Amazon SQS moves the message to the
1271
1379
  # dead-letter-queue.
1272
- #
1273
1380
  # * `RedriveAllowPolicy` – The string that includes the parameters for
1274
1381
  # the permissions for the dead-letter queue redrive permission and
1275
1382
  # which source queues can specify dead-letter queues as a JSON object.
@@ -1288,7 +1395,6 @@ module Aws::SQS
1288
1395
  #
1289
1396
  # * `byQueue` – Only queues specified by the `sourceQueueArns`
1290
1397
  # parameter can specify this queue as the dead-letter queue.
1291
- #
1292
1398
  # * `sourceQueueArns` – The Amazon Resource Names (ARN)s of the source
1293
1399
  # queues that can specify this queue as the dead-letter queue and
1294
1400
  # redrive messages. You can specify this parameter only when the
@@ -1402,29 +1508,32 @@ module Aws::SQS
1402
1508
  req.send_request(options)
1403
1509
  end
1404
1510
 
1405
- # Returns the URL of an existing Amazon SQS queue.
1406
- #
1407
- # To access a queue that belongs to another AWS account, use the
1408
- # `QueueOwnerAWSAccountId` parameter to specify the account ID of the
1409
- # queue's owner. The queue's owner must grant you permission to access
1410
- # the queue. For more information about shared queue access, see `
1411
- # AddPermission ` or see [Allow Developers to Write Messages to a Shared
1412
- # Queue][1] in the *Amazon SQS Developer Guide*.
1511
+ # The `GetQueueUrl` API returns the URL of an existing Amazon SQS queue.
1512
+ # This is useful when you know the queue's name but need to retrieve
1513
+ # its URL for further operations.
1514
+ #
1515
+ # To access a queue owned by another Amazon Web Services account, use
1516
+ # the `QueueOwnerAWSAccountId` parameter to specify the account ID of
1517
+ # the queue's owner. Note that the queue owner must grant you the
1518
+ # necessary permissions to access the queue. For more information about
1519
+ # accessing shared queues, see the ` AddPermission ` API or [Allow
1520
+ # developers to write messages to a shared queue][1] in the *Amazon SQS
1521
+ # Developer Guide*.
1413
1522
  #
1414
1523
  #
1415
1524
  #
1416
1525
  # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-writing-an-sqs-policy.html#write-messages-to-shared-queue
1417
1526
  #
1418
1527
  # @option params [required, String] :queue_name
1419
- # The name of the queue whose URL must be fetched. Maximum 80
1420
- # characters. Valid values: alphanumeric characters, hyphens (`-`), and
1421
- # underscores (`_`).
1422
- #
1423
- # Queue URLs and names are case-sensitive.
1528
+ # (Required) The name of the queue for which you want to fetch the URL.
1529
+ # The name can be up to 80 characters long and can include alphanumeric
1530
+ # characters, hyphens (-), and underscores (\_). Queue URLs and names
1531
+ # are case-sensitive.
1424
1532
  #
1425
1533
  # @option params [String] :queue_owner_aws_account_id
1426
- # The Amazon Web Services account ID of the account that created the
1427
- # queue.
1534
+ # (Optional) The Amazon Web Services account ID of the account that
1535
+ # created the queue. This is only required when you are attempting to
1536
+ # access a queue owned by another Amazon Web Services account.
1428
1537
  #
1429
1538
  # @return [Types::GetQueueUrlResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1430
1539
  #
@@ -1515,6 +1624,21 @@ module Aws::SQS
1515
1624
  # Gets the most recent message movement tasks (up to 10) under a
1516
1625
  # specific source queue.
1517
1626
  #
1627
+ # <note markdown="1"> * This action is currently limited to supporting message redrive from
1628
+ # [dead-letter queues (DLQs)][1] only. In this context, the source
1629
+ # queue is the dead-letter queue (DLQ), while the destination queue
1630
+ # can be the original source queue (from which the messages were
1631
+ # driven to the dead-letter-queue), or a custom destination queue.
1632
+ #
1633
+ # * Only one active message movement task is supported per queue at any
1634
+ # given time.
1635
+ #
1636
+ # </note>
1637
+ #
1638
+ #
1639
+ #
1640
+ # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html
1641
+ #
1518
1642
  # @option params [required, String] :source_arn
1519
1643
  # The ARN of the queue whose message movement tasks are to be listed.
1520
1644
  #
@@ -1665,7 +1789,8 @@ module Aws::SQS
1665
1789
  req.send_request(options)
1666
1790
  end
1667
1791
 
1668
- # Deletes the messages in a queue specified by the `QueueURL` parameter.
1792
+ # Deletes available messages in a queue (including in-flight messages)
1793
+ # specified by the `QueueURL` parameter.
1669
1794
  #
1670
1795
  # When you use the `PurgeQueue` action, you can't retrieve any messages
1671
1796
  # deleted from a queue.
@@ -1708,7 +1833,7 @@ module Aws::SQS
1708
1833
  # Developer Guide*.
1709
1834
  #
1710
1835
  # Short poll is the default behavior where a weighted random set of
1711
- # machines is sampled on a `ReceiveMessage` call. Thus, only the
1836
+ # machines is sampled on a `ReceiveMessage` call. Therefore, only the
1712
1837
  # messages on the sampled machines are returned. If the number of
1713
1838
  # messages in the queue is small (fewer than 1,000), you most likely get
1714
1839
  # fewer messages than you requested per `ReceiveMessage` call. If the
@@ -1738,14 +1863,8 @@ module Aws::SQS
1738
1863
  # You can provide the `VisibilityTimeout` parameter in your request. The
1739
1864
  # parameter is applied to the messages that Amazon SQS returns in the
1740
1865
  # response. If you don't include the parameter, the overall visibility
1741
- # timeout for the queue is used for the returned messages. For more
1742
- # information, see [Visibility Timeout][4] in the *Amazon SQS Developer
1743
- # Guide*.
1744
- #
1745
- # A message that isn't deleted or a message whose visibility isn't
1746
- # extended before the visibility timeout expires counts as a failed
1747
- # receive. Depending on the configuration of the queue, the message
1748
- # might be sent to the dead-letter queue.
1866
+ # timeout for the queue is used for the returned messages. The default
1867
+ # visibility timeout for a queue is 30 seconds.
1749
1868
  #
1750
1869
  # <note markdown="1"> In the future, new attributes might be added. If you write code that
1751
1870
  # calls this action, we recommend that you structure your code so that
@@ -1758,7 +1877,6 @@ module Aws::SQS
1758
1877
  # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-long-polling.html
1759
1878
  # [2]: https://www.ietf.org/rfc/rfc1321.txt
1760
1879
  # [3]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-message-identifiers.html
1761
- # [4]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html
1762
1880
  #
1763
1881
  # @option params [required, String] :queue_url
1764
1882
  # The URL of the Amazon SQS queue from which messages are received.
@@ -1766,6 +1884,10 @@ module Aws::SQS
1766
1884
  # Queue URLs and names are case-sensitive.
1767
1885
  #
1768
1886
  # @option params [Array<String>] :attribute_names
1887
+ # This parameter has been discontinued but will be supported for
1888
+ # backward compatibility. To provide attribute names, you are encouraged
1889
+ # to use `MessageSystemAttributeNames`.
1890
+ #
1769
1891
  # A list of attributes that need to be returned along with each message.
1770
1892
  # These attributes include:
1771
1893
  #
@@ -1786,7 +1908,49 @@ module Aws::SQS
1786
1908
  #
1787
1909
  # * For an IAM role, returns the IAM role ID, for example
1788
1910
  # `ABCDE1F2GH3I4JK5LMNOP:i-a123b456`.
1911
+ # * `SentTimestamp` – Returns the time the message was sent to the queue
1912
+ # ([epoch time][1] in milliseconds).
1789
1913
  #
1914
+ # * `SqsManagedSseEnabled` – Enables server-side queue encryption using
1915
+ # SQS owned encryption keys. Only one server-side encryption option is
1916
+ # supported per queue (for example, [SSE-KMS][2] or [SSE-SQS][3]).
1917
+ #
1918
+ # * `MessageDeduplicationId` – Returns the value provided by the
1919
+ # producer that calls the ` SendMessage ` action.
1920
+ #
1921
+ # * `MessageGroupId` – Returns the value provided by the producer that
1922
+ # calls the ` SendMessage ` action. Messages with the same
1923
+ # `MessageGroupId` are returned in sequence.
1924
+ #
1925
+ # * `SequenceNumber` – Returns the value provided by Amazon SQS.
1926
+ #
1927
+ #
1928
+ #
1929
+ # [1]: http://en.wikipedia.org/wiki/Unix_time
1930
+ # [2]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-configure-sse-existing-queue.html
1931
+ # [3]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-configure-sqs-sse-queue.html
1932
+ #
1933
+ # @option params [Array<String>] :message_system_attribute_names
1934
+ # A list of attributes that need to be returned along with each message.
1935
+ # These attributes include:
1936
+ #
1937
+ # * `All` – Returns all values.
1938
+ #
1939
+ # * `ApproximateFirstReceiveTimestamp` – Returns the time the message
1940
+ # was first received from the queue ([epoch time][1] in milliseconds).
1941
+ #
1942
+ # * `ApproximateReceiveCount` – Returns the number of times a message
1943
+ # has been received across all queues but not deleted.
1944
+ #
1945
+ # * `AWSTraceHeader` – Returns the X-Ray trace header string.
1946
+ #
1947
+ # * `SenderId`
1948
+ #
1949
+ # * For a user, returns the user ID, for example
1950
+ # `ABCDEFGHI1JKLMNOPQ23R`.
1951
+ #
1952
+ # * For an IAM role, returns the IAM role ID, for example
1953
+ # `ABCDE1F2GH3I4JK5LMNOP:i-a123b456`.
1790
1954
  # * `SentTimestamp` – Returns the time the message was sent to the queue
1791
1955
  # ([epoch time][1] in milliseconds).
1792
1956
  #
@@ -1839,14 +2003,47 @@ module Aws::SQS
1839
2003
  # @option params [Integer] :visibility_timeout
1840
2004
  # The duration (in seconds) that the received messages are hidden from
1841
2005
  # subsequent retrieve requests after being retrieved by a
1842
- # `ReceiveMessage` request.
2006
+ # `ReceiveMessage` request. If not specified, the default visibility
2007
+ # timeout for the queue is used, which is 30 seconds.
2008
+ #
2009
+ # Understanding `VisibilityTimeout`:
2010
+ #
2011
+ # * When a message is received from a queue, it becomes temporarily
2012
+ # invisible to other consumers for the duration of the visibility
2013
+ # timeout. This prevents multiple consumers from processing the same
2014
+ # message simultaneously. If the message is not deleted or its
2015
+ # visibility timeout is not extended before the timeout expires, it
2016
+ # becomes visible again and can be retrieved by other consumers.
2017
+ #
2018
+ # * Setting an appropriate visibility timeout is crucial. If it's too
2019
+ # short, the message might become visible again before processing is
2020
+ # complete, leading to duplicate processing. If it's too long, it
2021
+ # delays the reprocessing of messages if the initial processing fails.
2022
+ #
2023
+ # * You can adjust the visibility timeout using the
2024
+ # `--visibility-timeout` parameter in the `receive-message` command to
2025
+ # match the processing time required by your application.
2026
+ #
2027
+ # * A message that isn't deleted or a message whose visibility isn't
2028
+ # extended before the visibility timeout expires counts as a failed
2029
+ # receive. Depending on the configuration of the queue, the message
2030
+ # might be sent to the dead-letter queue.
2031
+ #
2032
+ # For more information, see [Visibility Timeout][1] in the *Amazon SQS
2033
+ # Developer Guide*.
2034
+ #
2035
+ #
2036
+ #
2037
+ # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html
1843
2038
  #
1844
2039
  # @option params [Integer] :wait_time_seconds
1845
2040
  # The duration (in seconds) for which the call waits for a message to
1846
2041
  # arrive in the queue before returning. If a message is available, the
1847
2042
  # call returns sooner than `WaitTimeSeconds`. If no messages are
1848
- # available and the wait time expires, the call returns successfully
1849
- # with an empty list of messages.
2043
+ # available and the wait time expires, the call does not return a
2044
+ # message list. If you are using the Java SDK, it returns a
2045
+ # `ReceiveMessageResponse` object, which has a empty list instead of a
2046
+ # Null object.
1850
2047
  #
1851
2048
  # To avoid HTTP errors, ensure that the HTTP response timeout for
1852
2049
  # `ReceiveMessage` requests is longer than the `WaitTimeSeconds`
@@ -1875,10 +2072,6 @@ module Aws::SQS
1875
2072
  # * When you set `FifoQueue`, a caller of the `ReceiveMessage` action
1876
2073
  # can provide a `ReceiveRequestAttemptId` explicitly.
1877
2074
  #
1878
- # * If a caller of the `ReceiveMessage` action doesn't provide a
1879
- # `ReceiveRequestAttemptId`, Amazon SQS generates a
1880
- # `ReceiveRequestAttemptId`.
1881
- #
1882
2075
  # * It is possible to retry the `ReceiveMessage` action with the same
1883
2076
  # `ReceiveRequestAttemptId` if none of the messages have been modified
1884
2077
  # (deleted or had their visibility changes).
@@ -1912,7 +2105,7 @@ module Aws::SQS
1912
2105
  #
1913
2106
  # The maximum length of `ReceiveRequestAttemptId` is 128 characters.
1914
2107
  # `ReceiveRequestAttemptId` can contain alphanumeric characters (`a-z`,
1915
- # `A-Z`, `0-9`) and punctuation (`` !"#$%&'()*+,-./:;<=>?@[\]^_`\{|\}~
2108
+ # `A-Z`, `0-9`) and punctuation (`` !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
1916
2109
  # ``).
1917
2110
  #
1918
2111
  # For best practices of using `ReceiveRequestAttemptId`, see [Using the
@@ -1933,6 +2126,7 @@ module Aws::SQS
1933
2126
  # resp = client.receive_message({
1934
2127
  # queue_url: "String", # required
1935
2128
  # attribute_names: ["All"], # accepts All, Policy, VisibilityTimeout, MaximumMessageSize, MessageRetentionPeriod, ApproximateNumberOfMessages, ApproximateNumberOfMessagesNotVisible, CreatedTimestamp, LastModifiedTimestamp, QueueArn, ApproximateNumberOfMessagesDelayed, DelaySeconds, ReceiveMessageWaitTimeSeconds, RedrivePolicy, FifoQueue, ContentBasedDeduplication, KmsMasterKeyId, KmsDataKeyReusePeriodSeconds, DeduplicationScope, FifoThroughputLimit, RedriveAllowPolicy, SqsManagedSseEnabled
2129
+ # message_system_attribute_names: ["All"], # accepts All, SenderId, SentTimestamp, ApproximateReceiveCount, ApproximateFirstReceiveTimestamp, SequenceNumber, MessageDeduplicationId, MessageGroupId, AWSTraceHeader, DeadLetterQueueSourceArn
1936
2130
  # message_attribute_names: ["MessageAttributeName"],
1937
2131
  # max_number_of_messages: 1,
1938
2132
  # visibility_timeout: 1,
@@ -2017,13 +2211,17 @@ module Aws::SQS
2017
2211
  # Delivers a message to the specified queue.
2018
2212
  #
2019
2213
  # A message can include only XML, JSON, and unformatted text. The
2020
- # following Unicode characters are allowed:
2214
+ # following Unicode characters are allowed. For more information, see
2215
+ # the [W3C specification for characters][1].
2021
2216
  #
2022
2217
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
2023
2218
  # \| `#x10000` to `#x10FFFF`
2024
2219
  #
2025
- # Any characters not included in this list will be rejected. For more
2026
- # information, see the [W3C specification for characters][1].
2220
+ # Amazon SQS does not throw an exception or completely reject the
2221
+ # message if it contains invalid characters. Instead, it replaces those
2222
+ # invalid characters with `U+FFFD` before storing the message in the
2223
+ # queue, as long as the message body contains at least one valid
2224
+ # character.
2027
2225
  #
2028
2226
  #
2029
2227
  #
@@ -2039,13 +2237,17 @@ module Aws::SQS
2039
2237
  # size is 256 KiB.
2040
2238
  #
2041
2239
  # A message can include only XML, JSON, and unformatted text. The
2042
- # following Unicode characters are allowed:
2240
+ # following Unicode characters are allowed. For more information, see
2241
+ # the [W3C specification for characters][1].
2043
2242
  #
2044
2243
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
2045
2244
  # \| `#x10000` to `#x10FFFF`
2046
2245
  #
2047
- # Any characters not included in this list will be rejected. For more
2048
- # information, see the [W3C specification for characters][1].
2246
+ # Amazon SQS does not throw an exception or completely reject the
2247
+ # message if it contains invalid characters. Instead, it replaces those
2248
+ # invalid characters with `U+FFFD` before storing the message in the
2249
+ # queue, as long as the message body contains at least one valid
2250
+ # character.
2049
2251
  #
2050
2252
  #
2051
2253
  #
@@ -2108,7 +2310,6 @@ module Aws::SQS
2108
2310
  #
2109
2311
  # * If the queue has `ContentBasedDeduplication` set, your
2110
2312
  # `MessageDeduplicationId` overrides the generated one.
2111
- #
2112
2313
  # * When `ContentBasedDeduplication` is in effect, messages with
2113
2314
  # identical content sent within the deduplication interval are treated
2114
2315
  # as duplicates and only one copy of the message is delivered.
@@ -2133,7 +2334,7 @@ module Aws::SQS
2133
2334
  #
2134
2335
  # The maximum length of `MessageDeduplicationId` is 128 characters.
2135
2336
  # `MessageDeduplicationId` can contain alphanumeric characters (`a-z`,
2136
- # `A-Z`, `0-9`) and punctuation (`` !"#$%&'()*+,-./:;<=>?@[\]^_`\{|\}~
2337
+ # `A-Z`, `0-9`) and punctuation (`` !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
2137
2338
  # ``).
2138
2339
  #
2139
2340
  # For best practices of using `MessageDeduplicationId`, see [Using the
@@ -2164,9 +2365,9 @@ module Aws::SQS
2164
2365
  # `MessageGroupId` values. For each `MessageGroupId`, the messages are
2165
2366
  # sorted by time sent. The caller can't specify a `MessageGroupId`.
2166
2367
  #
2167
- # The length of `MessageGroupId` is 128 characters. Valid values:
2168
- # alphanumeric characters and punctuation ``
2169
- # (!"#$%&'()*+,-./:;<=>?@[\]^_`\{|\}~) ``.
2368
+ # The maximum length of `MessageGroupId` is 128 characters. Valid
2369
+ # values: alphanumeric characters and punctuation ``
2370
+ # (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~) ``.
2170
2371
  #
2171
2372
  # For best practices of using `MessageGroupId`, see [Using the
2172
2373
  # MessageGroupId Property][1] in the *Amazon SQS Developer Guide*.
@@ -2247,13 +2448,17 @@ module Aws::SQS
2247
2448
  # messages) are both 256 KiB (262,144 bytes).
2248
2449
  #
2249
2450
  # A message can include only XML, JSON, and unformatted text. The
2250
- # following Unicode characters are allowed:
2451
+ # following Unicode characters are allowed. For more information, see
2452
+ # the [W3C specification for characters][1].
2251
2453
  #
2252
2454
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
2253
2455
  # \| `#x10000` to `#x10FFFF`
2254
2456
  #
2255
- # Any characters not included in this list will be rejected. For more
2256
- # information, see the [W3C specification for characters][1].
2457
+ # Amazon SQS does not throw an exception or completely reject the
2458
+ # message if it contains invalid characters. Instead, it replaces those
2459
+ # invalid characters with `U+FFFD` before storing the message in the
2460
+ # queue, as long as the message body contains at least one valid
2461
+ # character.
2257
2462
  #
2258
2463
  # If you don't specify the `DelaySeconds` parameter for an entry,
2259
2464
  # Amazon SQS uses the default value for the queue.
@@ -2332,13 +2537,14 @@ module Aws::SQS
2332
2537
  req.send_request(options)
2333
2538
  end
2334
2539
 
2335
- # Sets the value of one or more queue attributes. When you change a
2336
- # queue's attributes, the change can take up to 60 seconds for most of
2337
- # the attributes to propagate throughout the Amazon SQS system. Changes
2338
- # made to the `MessageRetentionPeriod` attribute can take up to 15
2339
- # minutes and will impact existing messages in the queue potentially
2340
- # causing them to be expired and deleted if the `MessageRetentionPeriod`
2341
- # is reduced below the age of existing messages.
2540
+ # Sets the value of one or more queue attributes, like a policy. When
2541
+ # you change a queue's attributes, the change can take up to 60 seconds
2542
+ # for most of the attributes to propagate throughout the Amazon SQS
2543
+ # system. Changes made to the `MessageRetentionPeriod` attribute can
2544
+ # take up to 15 minutes and will impact existing messages in the queue
2545
+ # potentially causing them to be expired and deleted if the
2546
+ # `MessageRetentionPeriod` is reduced below the age of existing
2547
+ # messages.
2342
2548
  #
2343
2549
  # <note markdown="1"> * In the future, new attributes might be added. If you write code that
2344
2550
  # calls this action, we recommend that you structure your code so that
@@ -2418,7 +2624,6 @@ module Aws::SQS
2418
2624
  # Default: 10. When the `ReceiveCount` for a message exceeds the
2419
2625
  # `maxReceiveCount` for a queue, Amazon SQS moves the message to the
2420
2626
  # dead-letter-queue.
2421
- #
2422
2627
  # * `RedriveAllowPolicy` – The string that includes the parameters for
2423
2628
  # the permissions for the dead-letter queue redrive permission and
2424
2629
  # which source queues can specify dead-letter queues as a JSON object.
@@ -2437,7 +2642,6 @@ module Aws::SQS
2437
2642
  #
2438
2643
  # * `byQueue` – Only queues specified by the `sourceQueueArns`
2439
2644
  # parameter can specify this queue as the dead-letter queue.
2440
- #
2441
2645
  # * `sourceQueueArns` – The Amazon Resource Names (ARN)s of the source
2442
2646
  # queues that can specify this queue as the dead-letter queue and
2443
2647
  # redrive messages. You can specify this parameter only when the
@@ -2497,7 +2701,6 @@ module Aws::SQS
2497
2701
  #
2498
2702
  # * If the queue has `ContentBasedDeduplication` set, your
2499
2703
  # `MessageDeduplicationId` overrides the generated one.
2500
- #
2501
2704
  # * When `ContentBasedDeduplication` is in effect, messages with
2502
2705
  # identical content sent within the deduplication interval are
2503
2706
  # treated as duplicates and only one copy of the message is
@@ -2576,21 +2779,31 @@ module Aws::SQS
2576
2779
  # queue to a specified destination queue.
2577
2780
  #
2578
2781
  # <note markdown="1"> * This action is currently limited to supporting message redrive from
2579
- # dead-letter queues (DLQs) only. In this context, the source queue is
2580
- # the dead-letter queue (DLQ), while the destination queue can be the
2782
+ # queues that are configured as [dead-letter queues (DLQs)][1] of
2783
+ # other Amazon SQS queues only. Non-SQS queue sources of dead-letter
2784
+ # queues, such as Lambda or Amazon SNS topics, are currently not
2785
+ # supported.
2786
+ #
2787
+ # * In dead-letter queues redrive context, the `StartMessageMoveTask`
2788
+ # the source queue is the DLQ, while the destination queue can be the
2581
2789
  # original source queue (from which the messages were driven to the
2582
2790
  # dead-letter-queue), or a custom destination queue.
2583
2791
  #
2584
- # * Currently, only standard queues are supported.
2585
- #
2586
2792
  # * Only one active message movement task is supported per queue at any
2587
2793
  # given time.
2588
2794
  #
2589
2795
  # </note>
2590
2796
  #
2797
+ #
2798
+ #
2799
+ # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html
2800
+ #
2591
2801
  # @option params [required, String] :source_arn
2592
2802
  # The ARN of the queue that contains the messages to be moved to another
2593
- # queue. Currently, only dead-letter queue (DLQ) ARNs are accepted.
2803
+ # queue. Currently, only ARNs of dead-letter queues (DLQs) whose sources
2804
+ # are other Amazon SQS queues are accepted. DLQs whose sources are
2805
+ # non-SQS queues, such as Lambda or Amazon SNS topics, are not currently
2806
+ # supported.
2594
2807
  #
2595
2808
  # @option params [String] :destination_arn
2596
2809
  # The ARN of the queue that receives the moved messages. You can use
@@ -2733,14 +2946,19 @@ module Aws::SQS
2733
2946
  # @api private
2734
2947
  def build_request(operation_name, params = {})
2735
2948
  handlers = @handlers.for(operation_name)
2949
+ tracer = config.telemetry_provider.tracer_provider.tracer(
2950
+ Aws::Telemetry.module_to_tracer_name('Aws::SQS')
2951
+ )
2736
2952
  context = Seahorse::Client::RequestContext.new(
2737
2953
  operation_name: operation_name,
2738
2954
  operation: config.api.operation(operation_name),
2739
2955
  client: self,
2740
2956
  params: params,
2741
- config: config)
2957
+ config: config,
2958
+ tracer: tracer
2959
+ )
2742
2960
  context[:gem_name] = 'aws-sdk-sqs'
2743
- context[:gem_version] = '1.60.0'
2961
+ context[:gem_version] = '1.93.0'
2744
2962
  Seahorse::Client::Request.new(handlers, context)
2745
2963
  end
2746
2964