AWS App Mesh · Schema
VirtualGatewayListener
An object that represents a listener for a virtual gateway.
DeprecatedEnvoyMicroservicesNetworkingService Mesh
Properties
| Name | Type | Description |
|---|---|---|
| connectionPool | object | |
| healthCheck | object | |
| portMapping | object | |
| tls | object |
JSON Schema
{
"type": "object",
"properties": {
"connectionPool": {
"allOf": [
{
"$ref": "#/components/schemas/VirtualGatewayConnectionPool"
},
{
"description": "The connection pool information for the virtual gateway listener."
}
]
},
"healthCheck": {
"allOf": [
{
"$ref": "#/components/schemas/VirtualGatewayHealthCheckPolicy"
},
{
"description": "The health check information for the listener."
}
]
},
"portMapping": {
"allOf": [
{
"$ref": "#/components/schemas/VirtualGatewayPortMapping"
},
{
"description": "The port mapping information for the listener."
}
]
},
"tls": {
"allOf": [
{
"$ref": "#/components/schemas/VirtualGatewayListenerTls"
},
{
"description": "A reference to an object that represents the Transport Layer Security (TLS) properties for the listener."
}
]
}
},
"required": [
"portMapping"
],
"description": "An object that represents a listener for a virtual gateway.",
"$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-virtual-gateway-listener-schema.json",
"title": "VirtualGatewayListener"
}