PipeTargetSqsQueueParameters

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

Amazon Web ServicesEvent-DrivenIntegrationMessagingServerless

Properties

Name Type Description
MessageDeduplicationId object
MessageGroupId object
View JSON Schema on GitHub

JSON Schema

amazon-eventbridge-pipes-pipe-target-sqs-queue-parameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-pipes/refs/heads/main/json-schema/amazon-eventbridge-pipes-pipe-target-sqs-queue-parameters-schema.json",
  "title": "PipeTargetSqsQueueParameters",
  "description": "The parameters for using a Amazon SQS stream as a source.",
  "type": "object",
  "properties": {
    "MessageDeduplicationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MessageDeduplicationId"
        },
        {
          "description": "<p>This parameter applies only to FIFO (first-in-first-out) queues.</p> <p>The token used for deduplication of sent messages.</p>"
        }
      ]
    },
    "MessageGroupId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MessageGroupId"
        },
        {
          "description": "The FIFO message group ID to use as the target."
        }
      ]
    }
  }
}