AWS App Mesh · Schema

VirtualGatewaySpec

An object that represents the specification of a service mesh resource.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
backendDefaults object
listeners object
logging object An object that represents logging information.
View JSON Schema on GitHub

JSON Schema

app-mesh-virtual-gateway-spec-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "backendDefaults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualGatewayBackendDefaults"
        },
        {
          "description": "A reference to an object that represents the defaults for backends."
        }
      ]
    },
    "listeners": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualGatewayListeners"
        },
        {
          "description": "The listeners that the mesh endpoint is expected to receive inbound traffic from. You can specify one listener."
        }
      ]
    },
    "logging": {
      "type": "object",
      "properties": {
        "accessLog": {
          "allOf": [
            {
              "$ref": "#/components/schemas/VirtualGatewayAccessLog"
            },
            {
              "description": "The access log configuration."
            }
          ]
        }
      },
      "description": "An object that represents logging information."
    }
  },
  "required": [
    "listeners"
  ],
  "description": "An object that represents the specification of a service mesh resource.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-schema/app-mesh-virtual-gateway-spec-schema.json",
  "title": "VirtualGatewaySpec"
}