AWS App Mesh · JSON Structure

App Mesh Match Range Structure

An object that represents the range of values to match on. The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.

Type: object Properties: 2 Required: 2
DeprecatedEnvoyMicroservicesNetworkingService Mesh

MatchRange is a JSON Structure definition published by AWS App Mesh, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

end start

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "end": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The end of the range."
        }
      ]
    },
    "start": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The start of the range."
        }
      ]
    }
  },
  "required": [
    "end",
    "start"
  ],
  "description": "An object that represents the range of values to match on. The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-structure/app-mesh-match-range-structure.json",
  "name": "MatchRange"
}