aws-sdk-sqs 1.61.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: bf04d63f8b32d1200dbbfaede0622053d56f759cae23665d25d633dbb5a0e180
4
- data.tar.gz: 0ceda901e2e3a9ba9ef0a22df130bbb6e5962cce62b1164c985d2b5852e56837
3
+ metadata.gz: 2122dc42c2fd0e1b6d8bd94fb5d11b7e3f0ff5a854a9f9c946063b6bdd9f7c18
4
+ data.tar.gz: d31e44bad7f581a0846b28c066ab6f542b6c8dd9e8fc46a25b3cc1d0310ee1d3
5
5
  SHA512:
6
- metadata.gz: 2522a538048f406aa3f8600b3ae674b3a9bf7ebe6879421198b0093e7a8f641ff711c4467ef26322171ed032b38a6cf0108ad02111d976cb517794fb4cd81917
7
- data.tar.gz: fb5fb0f1611951e80c58ec080e817c1b686ea554247a43f45164eafe6346071eb5a6901a3fe7a21a337ee73c71349b96ec7a53ce81eb8cfc061400a1b816f5ef
6
+ metadata.gz: 04ca379aa29b5f7e559b306ba47187e027d10d2648cf7ffbe3e4d65ce79192b94ebbeb80f2b09268e089172bfc22ed5c29eb2388854dd8f2402c21097e553107
7
+ data.tar.gz: 26614225a9ca2f341f1cb665c10ca93533f5703e61a75218c2db77cd084f7b6a766faa417d7f6c1e26f72d87315c494edfc7a9d712b25eb438a4a563cb0f503b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.61.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.62.0
@@ -497,17 +497,28 @@ module Aws::SQS
497
497
  req.send_request(options)
498
498
  end
499
499
 
500
- # 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.
501
504
  #
502
- # <note markdown="1"> * A message movement can only be cancelled when the current status is
503
- # RUNNING.
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.
504
510
  #
505
- # * Cancelling a message movement task does not revert the messages that
506
- # have already been moved. It can only stop the messages that have not
507
- # been moved yet.
511
+ # * Currently, only standard queues are supported.
512
+ #
513
+ # * Only one active message movement task is supported per queue at any
514
+ # given time.
508
515
  #
509
516
  # </note>
510
517
  #
518
+ #
519
+ #
520
+ # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html
521
+ #
511
522
  # @option params [required, String] :task_handle
512
523
  # An identifier associated with a message movement task.
513
524
  #
@@ -1519,6 +1530,23 @@ module Aws::SQS
1519
1530
  # Gets the most recent message movement tasks (up to 10) under a
1520
1531
  # specific source queue.
1521
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
+ #
1522
1550
  # @option params [required, String] :source_arn
1523
1551
  # The ARN of the queue whose message movement tasks are to be listed.
1524
1552
  #
@@ -1669,7 +1697,8 @@ module Aws::SQS
1669
1697
  req.send_request(options)
1670
1698
  end
1671
1699
 
1672
- # 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.
1673
1702
  #
1674
1703
  # When you use the `PurgeQueue` action, you can't retrieve any messages
1675
1704
  # deleted from a queue.
@@ -2580,21 +2609,34 @@ module Aws::SQS
2580
2609
  # queue to a specified destination queue.
2581
2610
  #
2582
2611
  # <note markdown="1"> * This action is currently limited to supporting message redrive from
2583
- # dead-letter queues (DLQs) only. In this context, the source queue is
2584
- # 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
2585
2619
  # original source queue (from which the messages were driven to the
2586
2620
  # dead-letter-queue), or a custom destination queue.
2587
2621
  #
2588
- # * Currently, only standard queues are supported.
2622
+ # * Currently, only standard queues support redrive. FIFO queues don't
2623
+ # support redrive.
2589
2624
  #
2590
2625
  # * Only one active message movement task is supported per queue at any
2591
2626
  # given time.
2592
2627
  #
2593
2628
  # </note>
2594
2629
  #
2630
+ #
2631
+ #
2632
+ # [1]: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html
2633
+ #
2595
2634
  # @option params [required, String] :source_arn
2596
2635
  # The ARN of the queue that contains the messages to be moved to another
2597
- # 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.
2598
2640
  #
2599
2641
  # @option params [String] :destination_arn
2600
2642
  # The ARN of the queue that receives the moved messages. You can use
@@ -2744,7 +2786,7 @@ module Aws::SQS
2744
2786
  params: params,
2745
2787
  config: config)
2746
2788
  context[:gem_name] = 'aws-sdk-sqs'
2747
- context[:gem_version] = '1.61.0'
2789
+ context[:gem_version] = '1.62.0'
2748
2790
  Seahorse::Client::Request.new(handlers, context)
2749
2791
  end
2750
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.61.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.61.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-11 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