AWS App Mesh · Schema

MeshSpec

An object that represents the specification of a service mesh.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
egressFilter object
serviceDiscovery object An object that represents the service discovery information for a service mesh.
View JSON Schema on GitHub

JSON Schema

app-mesh-mesh-spec-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "egressFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EgressFilter"
        },
        {
          "description": "The egress filter rules for the service mesh."
        }
      ]
    },
    "serviceDiscovery": {
      "type": "object",
      "properties": {
        "ipPreference": {
          "allOf": [
            {
              "$ref": "#/components/schemas/IpPreference"
            },
            {
              "description": "The IP version to use to control traffic within the mesh."
            }
          ]
        }
      },
      "description": "An object that represents the service discovery information for a service mesh."
    }
  },
  "description": "An object that represents the specification of a service mesh.",
  "$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-mesh-spec-schema.json",
  "title": "MeshSpec"
}