Class: Aws::Scheduler::Types::SqsParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::Scheduler::Types::SqsParameters
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-scheduler/types.rb
Overview
The templated target type for the Amazon SQS [ ‘SendMessage` ][1] API operation. Contains the message group ID to use when the target is a FIFO queue. If you specify an Amazon SQS FIFO queue as a target, the queue must have content-based deduplication enabled. For more information, see [Using the Amazon SQS message deduplication ID] in the *Amazon SQS Developer Guide*.
[1]: docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html [2]: docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagededuplicationid-property.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message_group_id ⇒ String
The FIFO message group ID to use as the target.
Instance Attribute Details
#message_group_id ⇒ String
The FIFO message group ID to use as the target.
1113 1114 1115 1116 1117 |
# File 'lib/aws-sdk-scheduler/types.rb', line 1113 class SqsParameters < Struct.new( :message_group_id) SENSITIVE = [] include Aws::Structure end |