Amazon Global Accelerator · Schema
ListCustomRoutingPortMappingsRequest
ListCustomRoutingPortMappingsRequest schema from Amazon Global Accelerator API
AvailabilityCDNGlobalLoad BalancingNetworkingPerformance
Properties
| Name | Type | Description |
|---|---|---|
| AcceleratorArn | object | |
| EndpointGroupArn | object | |
| MaxResults | object | |
| NextToken | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-global-accelerator/refs/heads/main/json-schema/global-accelerator-list-custom-routing-port-mappings-request-schema.json",
"title": "ListCustomRoutingPortMappingsRequest",
"description": "ListCustomRoutingPortMappingsRequest schema from Amazon Global Accelerator API",
"type": "object",
"properties": {
"AcceleratorArn": {
"allOf": [
{
"$ref": "#/components/schemas/GenericString"
},
{
"description": "The Amazon Resource Name (ARN) of the accelerator to list the custom routing port mappings for."
}
]
},
"EndpointGroupArn": {
"allOf": [
{
"$ref": "#/components/schemas/GenericString"
},
{
"description": "The Amazon Resource Name (ARN) of the endpoint group to list the custom routing port mappings for."
}
]
},
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/PortMappingsMaxResults"
},
{
"description": "The number of destination port mappings that you want to return with this call. The default value is 10."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/GenericString"
},
{
"description": "The token for the next set of results. You receive this token from a previous call."
}
]
}
},
"required": [
"AcceleratorArn"
]
}