From bf3d591fee38f818b718fd02fa374a6d6d88bfbc Mon Sep 17 00:00:00 2001 From: Dec Kolakowski Date: Thu, 8 Jun 2023 10:54:01 +0100 Subject: [PATCH] remove queue ref --- sqs/README.md | 1 - sqs/json_schemas/channel.json | 4 ---- 2 files changed, 5 deletions(-) diff --git a/sqs/README.md b/sqs/README.md index 9061e425..1475139d 100644 --- a/sqs/README.md +++ b/sqs/README.md @@ -46,7 +46,6 @@ An SQS queue can set up a Dead Letter Queue as part of a Redelivery Policy. To s #### Queue |Field Name | Type | Description| |---|:---:|---| -|$ref | `string` | Allows for an external definition of a queue. The referenced structure MUST be in the format of a [Queue](#queue). If there are conflicts between the referenced definition and this Queue's definition, the behavior is *undefined*.| | `name` | string | **Required.** The name of the queue. When an [SNS Operation Binding Object]() references an SQS queue by name, the identifier should be the one in this field.| | `fifoQueue` | boolean | **Required.** Is this a FIFO queue? | | `deliveryDelay` | integer | **Optional.** The number of seconds to delay before a message sent to the queue can be received. Used to create a *delay queue*. Range is 0 to 15 minutes. Defaults to 0. | diff --git a/sqs/json_schemas/channel.json b/sqs/json_schemas/channel.json index 179d4035..3930780a 100644 --- a/sqs/json_schemas/channel.json +++ b/sqs/json_schemas/channel.json @@ -38,10 +38,6 @@ } }, "properties": { - "$ref": { - "type": "string", - "description": "Allows for an external definition of a queue. The referenced structure MUST be in the format of a Queue. If there are conflicts between the referenced definition and this Queue's definition, the behavior is undefined." - }, "name": { "type": "string", "description": "The name of the queue. When an SNS Operation Binding Object references an SQS queue by name, the identifier should be the one in this field."