Amazon API Gateway · Schema

VpcLink

GatewayHTTP APIREST APIServerlessWebSocket

Properties

Name Type Description
id string
name string
description string
targetArns array
status string
statusMessage string
tags object
View JSON Schema on GitHub

JSON Schema

amazon-api-gateway-vpclink-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VpcLink",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "targetArns": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "status": {
      "type": "string",
      "enum": [
        "AVAILABLE",
        "PENDING",
        "DELETING",
        "FAILED"
      ]
    },
    "statusMessage": {
      "type": "string"
    },
    "tags": {
      "type": "object"
    }
  }
}