sqs_start_message_move_task: Starts an asynchronous task to move messages from a specified...

View source: R/sqs_operations.R

sqs_start_message_move_taskR Documentation

Starts an asynchronous task to move messages from a specified source queue to a specified destination queue

Description

Starts an asynchronous task to move messages from a specified source queue to a specified destination queue.

See https://www.paws-r-sdk.com/docs/sqs_start_message_move_task/ for full documentation.

Usage

sqs_start_message_move_task(
  SourceArn,
  DestinationArn = NULL,
  MaxNumberOfMessagesPerSecond = NULL
)

Arguments

SourceArn

[required] The ARN of the queue that contains the messages to be moved to another queue. Currently, 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.

DestinationArn

The ARN of the queue that receives the moved messages. You can use this field to specify the destination queue where you would like to redrive messages. If this field is left blank, the messages will be redriven back to their respective original source queues.

MaxNumberOfMessagesPerSecond

The number of messages to be moved per second (the message movement rate). You can use this field to define a fixed message movement rate. The maximum value for messages per second is 500. If this field is left blank, the system will optimize the rate based on the queue message backlog size, which may vary throughout the duration of the message movement task.


paws.application.integration documentation built on Sept. 12, 2023, 1:18 a.m.