Class: Aws::Pipes::Types::PipeTargetSqsQueueParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::PipeTargetSqsQueueParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pipes/types.rb
Overview
The parameters for using a Amazon SQS stream as a target.
Constant Summary collapse
- SENSITIVE =
[:message_group_id, :message_deduplication_id]
Instance Attribute Summary collapse
-
#message_deduplication_id ⇒ String
This parameter applies only to FIFO (first-in-first-out) queues.
-
#message_group_id ⇒ String
The FIFO message group ID to use as the target.
Instance Attribute Details
#message_deduplication_id ⇒ String
This parameter applies only to FIFO (first-in-first-out) queues.
The token used for deduplication of sent messages.
2605 2606 2607 2608 2609 2610 |
# File 'lib/aws-sdk-pipes/types.rb', line 2605 class PipeTargetSqsQueueParameters < Struct.new( :message_group_id, :message_deduplication_id) SENSITIVE = [:message_group_id, :message_deduplication_id] include Aws::Structure end |
#message_group_id ⇒ String
The FIFO message group ID to use as the target.
2605 2606 2607 2608 2609 2610 |
# File 'lib/aws-sdk-pipes/types.rb', line 2605 class PipeTargetSqsQueueParameters < Struct.new( :message_group_id, :message_deduplication_id) SENSITIVE = [:message_group_id, :message_deduplication_id] include Aws::Structure end |