Skip to content

Commit

Permalink
4.1.381
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-dotnet-automation committed Jul 28, 2023
1 parent a199a38 commit de2470d
Show file tree
Hide file tree
Showing 9 changed files with 47 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Include/sdk/_sdk-versions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

{
"ProductVersion" : "3.7.608.0",
"ProductVersion" : "3.7.608.1",
"CoreVersion" : "3.7.200.5",
"OverrideCoreVersion" : "3.3",
"DefaultToPreview" : false,
Expand Down Expand Up @@ -362,7 +362,7 @@
"InPreview" : false
},
"SQS" : {
"Version" : "3.7.200.5",
"Version" : "3.7.200.6",
"AssemblyVersionOverride" : "3.3",
"Dependencies" : {
"Core" : "3.7.200.5"
Expand Down
5 changes: 4 additions & 1 deletion changelogs/CHANGELOG.2023.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
### 4.1.380 (2023-07-27 21:13Z)
### 4.1.381 (2023-07-28 03:29Z)
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.608.1 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/master/changelogs/SDK.CHANGELOG.ALL.md.

### 4.1.380 (2023-07-27 21:13Z)
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.608.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/master/changelogs/SDK.CHANGELOG.ALL.md.

### 4.1.379 (2023-07-26 21:37Z)
Expand Down
5 changes: 4 additions & 1 deletion changelogs/CHANGELOG.ALL.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
### 4.1.380 (2023-07-27 21:13Z)
### 4.1.381 (2023-07-28 03:29Z)
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.608.1 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/master/changelogs/SDK.CHANGELOG.ALL.md.

### 4.1.380 (2023-07-27 21:13Z)
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.608.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/master/changelogs/SDK.CHANGELOG.ALL.md.

### 4.1.379 (2023-07-26 21:37Z)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
namespace Amazon.PowerShell.Cmdlets.SQS
{
/// <summary>
/// Deletes the messages in a queue specified by the <code>QueueURL</code> parameter.
/// Deletes available messages in a queue (including in-flight messages) specified by
/// the <code>QueueURL</code> parameter.
///
/// <important><para>
/// When you use the <code>PurgeQueue</code> action, you can't retrieve any messages deleted
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,17 @@ namespace Amazon.PowerShell.Cmdlets.SQS
{
/// <summary>
/// Gets the most recent message movement tasks (up to 10) under a specific source queue.
///
/// <note><ul><li><para>
/// This action is currently limited to supporting message redrive from <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html">dead-letter
/// queues (DLQs)</a> only. In this context, the source queue is the dead-letter queue
/// (DLQ), while the destination queue can be the original source queue (from which the
/// messages were driven to the dead-letter-queue), or a custom destination queue.
/// </para></li><li><para>
/// Currently, only standard queues are supported.
/// </para></li><li><para>
/// Only one active message movement task is supported per queue at any given time.
/// </para></li></ul></note>
/// </summary>
[Cmdlet("Get", "SQSMessageMoveTask")]
[OutputType("Amazon.SQS.Model.ListMessageMoveTasksResultEntry")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,17 @@ namespace Amazon.PowerShell.Cmdlets.SQS
/// destination queue.
///
/// <note><ul><li><para>
/// This action is currently limited to supporting message redrive from dead-letter queues
/// (DLQs) only. In this context, the source queue is the dead-letter queue (DLQ), while
/// the destination queue can be the original source queue (from which the messages were
/// driven to the dead-letter-queue), or a custom destination queue.
/// This action is currently limited to supporting message redrive from queues that are
/// configured as <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html">dead-letter
/// queues (DLQs)</a> of other Amazon SQS queues only. Non-SQS queue sources of dead-letter
/// queues, such as Lambda or Amazon SNS topics, are currently not supported.
/// </para></li><li><para>
/// Currently, only standard queues are supported.
/// In dead-letter queues redrive context, the <code>StartMessageMoveTask</code> the source
/// queue is the DLQ, while the destination queue can be the original source queue (from
/// which the messages were driven to the dead-letter-queue), or a custom destination
/// queue.
/// </para></li><li><para>
/// Currently, only standard queues support redrive. FIFO queues don't support redrive.
/// </para></li><li><para>
/// Only one active message movement task is supported per queue at any given time.
/// </para></li></ul></note>
Expand Down Expand Up @@ -82,7 +87,9 @@ public partial class StartSQSMessageMoveTaskCmdlet : AmazonSQSClientCmdlet, IExe
/// <summary>
/// <para>
/// <para>The ARN of the queue that contains the messages to be moved to another queue. Currently,
/// only dead-letter queue (DLQ) ARNs are accepted.</para>
/// only ARNs of dead-letter queues (DLQs) whose sources are other Amazon SQS queues are
/// accepted. DLQs whose sources are non-SQS queues, such as Lambda or Amazon SNS topics,
/// are not currently supported.</para>
/// </para>
/// </summary>
#if !MODULAR
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,20 @@
namespace Amazon.PowerShell.Cmdlets.SQS
{
/// <summary>
/// Cancels a specified message movement task.
/// Cancels a specified message movement task. A message movement can only be cancelled
/// when the current status is RUNNING. Cancelling a message movement task does not revert
/// the messages that have already been moved. It can only stop the messages that have
/// not been moved yet.
///
/// <note><ul><li><para>
/// A message movement can only be cancelled when the current status is RUNNING.
/// This action is currently limited to supporting message redrive from <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html">dead-letter
/// queues (DLQs)</a> only. In this context, the source queue is the dead-letter queue
/// (DLQ), while the destination queue can be the original source queue (from which the
/// messages were driven to the dead-letter-queue), or a custom destination queue.
/// </para></li><li><para>
/// Cancelling a message movement task does not revert the messages that have already
/// been moved. It can only stop the messages that have not been moved yet.
/// Currently, only standard queues are supported.
/// </para></li><li><para>
/// Only one active message movement task is supported per queue at any given time.
/// </para></li></ul></note>
/// </summary>
[Cmdlet("Stop", "SQSMessageMoveTask", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)]
Expand Down
Binary file modified modules/AWSPowerShell/CmdletsList.dat
Binary file not shown.
Binary file modified modules/ModularAWSPowerShell/CmdletsList.dat
Binary file not shown.

0 comments on commit de2470d

Please sign in to comment.