AWS App Mesh · Schema
RouteData
An object that represents a route returned by a describe operation.
DeprecatedEnvoyMicroservicesNetworkingService Mesh
Properties
| Name | Type | Description |
|---|---|---|
| meshName | object | |
| metadata | object | |
| routeName | object | |
| spec | object | |
| status | object | |
| virtualRouterName | object |
JSON Schema
{
"type": "object",
"properties": {
"meshName": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceName"
},
{
"description": "The name of the service mesh that the route resides in."
}
]
},
"metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceMetadata"
},
{
"description": "The associated metadata for the route."
}
]
},
"routeName": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceName"
},
{
"description": "The name of the route."
}
]
},
"spec": {
"allOf": [
{
"$ref": "#/components/schemas/RouteSpec"
},
{
"description": "The specifications of the route."
}
]
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/RouteStatus"
},
{
"description": "The status of the route."
}
]
},
"virtualRouterName": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceName"
},
{
"description": "The virtual router that the route is associated with."
}
]
}
},
"required": [
"meshName",
"metadata",
"routeName",
"spec",
"status",
"virtualRouterName"
],
"description": "An object that represents a route returned by a describe operation.",
"$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-route-data-schema.json",
"title": "RouteData"
}