Class: Aws::Pipes::Types::PipeTargetSqsQueueParameters

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb

Overview

The parameters for using a Amazon SQS stream as a target.

Constant Summary collapse

SENSITIVE =
[:message_deduplication_id, :message_group_id]

Instance Attribute Summary collapse

Instance Attribute Details

#message_deduplication_idString

This parameter applies only to FIFO (first-in-first-out) queues.

The token used for deduplication of sent messages.

Returns:

  • (String)


2463
2464
2465
2466
2467
2468
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2463

class PipeTargetSqsQueueParameters < Struct.new(
  :message_deduplication_id,
  :message_group_id)
  SENSITIVE = [:message_deduplication_id, :message_group_id]
  include Aws::Structure
end

#message_group_idString

The FIFO message group ID to use as the target.

Returns:

  • (String)


2463
2464
2465
2466
2467
2468
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2463

class PipeTargetSqsQueueParameters < Struct.new(
  :message_deduplication_id,
  :message_group_id)
  SENSITIVE = [:message_deduplication_id, :message_group_id]
  include Aws::Structure
end