Class: Aws::SQS::Types::StartMessageMoveTaskRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::StartMessageMoveTaskRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sqs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_arn ⇒ String
The ARN of the queue that receives the moved messages.
-
#max_number_of_messages_per_second ⇒ Integer
The number of messages to be moved per second (the message movement rate).
-
#source_arn ⇒ String
The ARN of the queue that contains the messages to be moved to another queue.
Instance Attribute Details
#destination_arn ⇒ String
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.
2710 2711 2712 2713 2714 2715 2716 |
# File 'lib/aws-sdk-sqs/types.rb', line 2710 class StartMessageMoveTaskRequest < Struct.new( :source_arn, :destination_arn, :max_number_of_messages_per_second) SENSITIVE = [] include Aws::Structure end |
#max_number_of_messages_per_second ⇒ Integer
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.
2710 2711 2712 2713 2714 2715 2716 |
# File 'lib/aws-sdk-sqs/types.rb', line 2710 class StartMessageMoveTaskRequest < Struct.new( :source_arn, :destination_arn, :max_number_of_messages_per_second) SENSITIVE = [] include Aws::Structure end |
#source_arn ⇒ String
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.
2710 2711 2712 2713 2714 2715 2716 |
# File 'lib/aws-sdk-sqs/types.rb', line 2710 class StartMessageMoveTaskRequest < Struct.new( :source_arn, :destination_arn, :max_number_of_messages_per_second) SENSITIVE = [] include Aws::Structure end |