ListCustomRoutingPortMappingsByDestinationRequest

ListCustomRoutingPortMappingsByDestinationRequest schema from Amazon Global Accelerator API

AvailabilityCDNGlobalLoad BalancingNetworkingPerformance

Properties

Name Type Description
EndpointId object
DestinationAddress object
MaxResults object
NextToken object
View JSON Schema on GitHub

JSON Schema

global-accelerator-list-custom-routing-port-mappings-by-destination-request-schema.json Raw ↑
{
  "$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-by-destination-request-schema.json",
  "title": "ListCustomRoutingPortMappingsByDestinationRequest",
  "description": "ListCustomRoutingPortMappingsByDestinationRequest schema from Amazon Global Accelerator API",
  "type": "object",
  "properties": {
    "EndpointId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "The ID for the virtual private cloud (VPC) subnet."
        }
      ]
    },
    "DestinationAddress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "The endpoint IP address in a virtual private cloud (VPC) subnet for which you want to receive back port mappings."
        }
      ]
    },
    "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": [
    "EndpointId",
    "DestinationAddress"
  ]
}