{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-scheduler/refs/heads/main/json-schema/amazon-eventbridge-scheduler-sqs-parameters-schema.json",
"title": "SqsParameters",
"description": "The templated target type for the Amazon SQS SendMessage 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. ",
"type": "object",
"properties": {
"MessageGroupId": {
"allOf": [
{
"$ref": "#/components/schemas/MessageGroupId"
},
{
"description": "The FIFO message group ID to use as the target."
}
]
}
}
}