AWS App Mesh · Schema
HttpRoute
An object that represents an HTTP or HTTP/2 route type.
DeprecatedEnvoyMicroservicesNetworkingService Mesh
Properties
| Name | Type | Description |
|---|---|---|
| action | object | |
| match | object | |
| retryPolicy | object | |
| timeout | object |
JSON Schema
{
"type": "object",
"properties": {
"action": {
"allOf": [
{
"$ref": "#/components/schemas/HttpRouteAction"
},
{
"description": "An object that represents the action to take if a match is determined."
}
]
},
"match": {
"allOf": [
{
"$ref": "#/components/schemas/HttpRouteMatch"
},
{
"description": "An object that represents the criteria for determining a request match."
}
]
},
"retryPolicy": {
"allOf": [
{
"$ref": "#/components/schemas/HttpRetryPolicy"
},
{
"description": "An object that represents a retry policy."
}
]
},
"timeout": {
"allOf": [
{
"$ref": "#/components/schemas/HttpTimeout"
},
{
"description": "An object that represents types of timeouts. "
}
]
}
},
"required": [
"action",
"match"
],
"description": "An object that represents an HTTP or HTTP/2 route type.",
"$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-http-route-schema.json",
"title": "HttpRoute"
}