Class: Aws::EventBridge::Types::SqsParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::SqsParameters
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass SqsParameters data as a hash:
{
message_group_id: "MessageGroupId",
}
This structure includes the custom parameter to be used when the target is an SQS FIFO queue.
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.
5307 5308 5309 5310 5311 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 5307 class SqsParameters < Struct.new( :message_group_id) SENSITIVE = [] include Aws::Structure end |