aws-sdk-sqs 1.60.0 → 1.62.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5bc34a90406d26a604ea1285375837102a49f64c41d3f519e9b28d943659eeaf
4
- data.tar.gz: c019139d03c4ec73eb528aaef73620f497fb2d355ed31b0142d2cdd288fc104b
3
+ metadata.gz: 2122dc42c2fd0e1b6d8bd94fb5d11b7e3f0ff5a854a9f9c946063b6bdd9f7c18
4
+ data.tar.gz: d31e44bad7f581a0846b28c066ab6f542b6c8dd9e8fc46a25b3cc1d0310ee1d3
5
5
  SHA512:
6
- metadata.gz: 0d5b3431cdd4a7580efb571812e5d24a7ff65a728c7ada5a5cd6c760ae1a11ac163e1c9ed0af91b8fa18394eb7f2bc094b0a4f21842578465830cf672bb71bf1
7
- data.tar.gz: ddd2e993072c62155fe5d7f006c0188a72b62aca3a1e38e8eb8e8b4e7c913b3f3e2b9bc26881d51f10aa398a6031b3552fcdbc2dd924c568f8ccd237f9809a38
6
+ metadata.gz: 04ca379aa29b5f7e559b306ba47187e027d10d2648cf7ffbe3e4d65ce79192b94ebbeb80f2b09268e089172bfc22ed5c29eb2388854dd8f2402c21097e553107
7
+ data.tar.gz: 26614225a9ca2f341f1cb665c10ca93533f5703e61a75218c2db77cd084f7b6a766faa417d7f6c1e26f72d87315c494edfc7a9d712b25eb438a4a563cb0f503b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.0 (2023-07-28)
5
+ ------------------
6
+
7
+ * Feature - Documentation changes related to SQS APIs.
8
+
9
+ 1.61.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.60.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
1
+ 1.62.0
@@ -220,6 +220,10 @@ module Aws::SQS
220
220
  # @option options [Boolean] :endpoint_discovery (false)
221
221
  # When set to `true`, endpoint discovery will be enabled for operations when available.
222
222
  #
223
+ # @option options [Boolean] :ignore_configured_endpoint_urls
224
+ # Setting to true disables use of endpoint URLs provided via environment
225
+ # variables and the shared configuration file.
226
+ #
223
227
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
224
228
  # The log formatter.
225
229
  #
@@ -493,17 +497,28 @@ module Aws::SQS
493
497
  req.send_request(options)
494
498
  end
495
499
 
496
- # Cancels a specified message movement task.
500
+ # Cancels a specified message movement task. A message movement can only
501
+ # be cancelled when the current status is RUNNING. Cancelling a message
502
+ # movement task does not revert the messages that have already been
503
+ # moved. It can only stop the messages that have not been moved yet.
504
+ #
505
+ # <note markdown="1"> * This action is currently limited to supporting message redrive from
506
+ # [dead-letter queues (DLQs)][1] only. In this context, the source
507
+ # queue is the dead-letter queue (DLQ), while the destination queue
508
+ # can be the original source queue (from which the messages were
509
+ # driven to the dead-letter-queue), or a custom destination queue.
497
510
  #
498
- # <note markdown="1"> * A message movement can only be cancelled when the current status is
499
- # RUNNING.
511
+ # * Currently, only standard queues are supported.
500
512
  #
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.
513
+ # * Only one active message movement task is supported per queue at any
514
+ # given time.
504
515
  #
505
516
  # </note>
506
517
  #
518
+ #
519
+ #
520
+ # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html
521
+ #
507
522
  # @option params [required, String] :task_handle
508
523
  # An identifier associated with a message movement task.
509
524
  #
@@ -1515,6 +1530,23 @@ module Aws::SQS
1515
1530
  # Gets the most recent message movement tasks (up to 10) under a
1516
1531
  # specific source queue.
1517
1532
  #
1533
+ # <note markdown="1"> * This action is currently limited to supporting message redrive from
1534
+ # [dead-letter queues (DLQs)][1] only. In this context, the source
1535
+ # queue is the dead-letter queue (DLQ), while the destination queue
1536
+ # can be the original source queue (from which the messages were
1537
+ # driven to the dead-letter-queue), or a custom destination queue.
1538
+ #
1539
+ # * Currently, only standard queues are supported.
1540
+ #
1541
+ # * Only one active message movement task is supported per queue at any
1542
+ # given time.
1543
+ #
1544
+ # </note>
1545
+ #
1546
+ #
1547
+ #
1548
+ # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html
1549
+ #
1518
1550
  # @option params [required, String] :source_arn
1519
1551
  # The ARN of the queue whose message movement tasks are to be listed.
1520
1552
  #
@@ -1665,7 +1697,8 @@ module Aws::SQS
1665
1697
  req.send_request(options)
1666
1698
  end
1667
1699
 
1668
- # Deletes the messages in a queue specified by the `QueueURL` parameter.
1700
+ # Deletes available messages in a queue (including in-flight messages)
1701
+ # specified by the `QueueURL` parameter.
1669
1702
  #
1670
1703
  # When you use the `PurgeQueue` action, you can't retrieve any messages
1671
1704
  # deleted from a queue.
@@ -2576,21 +2609,34 @@ module Aws::SQS
2576
2609
  # queue to a specified destination queue.
2577
2610
  #
2578
2611
  # <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
2612
+ # queues that are configured as [dead-letter queues (DLQs)][1] of
2613
+ # other Amazon SQS queues only. Non-SQS queue sources of dead-letter
2614
+ # queues, such as Lambda or Amazon SNS topics, are currently not
2615
+ # supported.
2616
+ #
2617
+ # * In dead-letter queues redrive context, the `StartMessageMoveTask`
2618
+ # the source queue is the DLQ, while the destination queue can be the
2581
2619
  # original source queue (from which the messages were driven to the
2582
2620
  # dead-letter-queue), or a custom destination queue.
2583
2621
  #
2584
- # * Currently, only standard queues are supported.
2622
+ # * Currently, only standard queues support redrive. FIFO queues don't
2623
+ # support redrive.
2585
2624
  #
2586
2625
  # * Only one active message movement task is supported per queue at any
2587
2626
  # given time.
2588
2627
  #
2589
2628
  # </note>
2590
2629
  #
2630
+ #
2631
+ #
2632
+ # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html
2633
+ #
2591
2634
  # @option params [required, String] :source_arn
2592
2635
  # 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.
2636
+ # queue. Currently, only ARNs of dead-letter queues (DLQs) whose sources
2637
+ # are other Amazon SQS queues are accepted. DLQs whose sources are
2638
+ # non-SQS queues, such as Lambda or Amazon SNS topics, are not currently
2639
+ # supported.
2594
2640
  #
2595
2641
  # @option params [String] :destination_arn
2596
2642
  # The ARN of the queue that receives the moved messages. You can use
@@ -2740,7 +2786,7 @@ module Aws::SQS
2740
2786
  params: params,
2741
2787
  config: config)
2742
2788
  context[:gem_name] = 'aws-sdk-sqs'
2743
- context[:gem_version] = '1.60.0'
2789
+ context[:gem_version] = '1.62.0'
2744
2790
  Seahorse::Client::Request.new(handlers, context)
2745
2791
  end
2746
2792
 
@@ -2384,8 +2384,10 @@ module Aws::SQS
2384
2384
 
2385
2385
  # @!attribute [rw] source_arn
2386
2386
  # The ARN of the queue that contains the messages to be moved to
2387
- # another queue. Currently, only dead-letter queue (DLQ) ARNs are
2388
- # accepted.
2387
+ # another queue. Currently, only ARNs of dead-letter queues (DLQs)
2388
+ # whose sources are other Amazon SQS queues are accepted. DLQs whose
2389
+ # sources are non-SQS queues, such as Lambda or Amazon SNS topics, are
2390
+ # not currently supported.
2389
2391
  # @return [String]
2390
2392
  #
2391
2393
  # @!attribute [rw] destination_arn
data/lib/aws-sdk-sqs.rb CHANGED
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-sqs/customizations'
54
54
  # @!group service
55
55
  module Aws::SQS
56
56
 
57
- GEM_VERSION = '1.60.0'
57
+ GEM_VERSION = '1.62.0'
58
58
 
59
59
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.60.0
4
+ version: 1.62.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: 2023-07-06 00:00:00.000000000 Z
11
+ date: 2023-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core