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_group_id, :message_deduplication_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)


2611
2612
2613
2614
2615
2616
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2611

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

#message_group_idString

The FIFO message group ID to use as the target.

Returns:

  • (String)


2611
2612
2613
2614
2615
2616
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2611

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