workers_queue_binding

APIs.ioEngineeringPlatform

Properties

Name Type Description
name object
queue_name string Name of the Queue to bind to
type string The class of resource that the binding provides.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-workers-queue-binding-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/workers_queue_binding",
  "title": "workers_queue_binding",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/workers_binding_name"
    },
    "queue_name": {
      "description": "Name of the Queue to bind to",
      "example": "my-queue",
      "type": "string"
    },
    "type": {
      "description": "The class of resource that the binding provides.",
      "enum": [
        "queue"
      ],
      "example": "queue",
      "type": "string"
    }
  },
  "required": [
    "name",
    "type",
    "queue_name"
  ],
  "type": "object"
}