AWS App Mesh · JSON Structure

App Mesh Http Query Parameter Structure

An object that represents the query parameter in the request.

Type: object Properties: 2 Required: 1
DeprecatedEnvoyMicroservicesNetworkingService Mesh

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

Properties

match name

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "match": {
      "allOf": [
        {
          "$ref": "#/components/schemas/QueryParameterMatch"
        },
        {
          "description": "The query parameter to match on."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/QueryParameterName"
        },
        {
          "description": "A name for the query parameter that will be matched on."
        }
      ]
    }
  },
  "required": [
    "name"
  ],
  "description": "An object that represents the query parameter in the request.",
  "$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-http-query-parameter-structure.json",
  "name": "HttpQueryParameter"
}