SocketAddress

An IP address/port combination.

AvailabilityCDNGlobalLoad BalancingNetworkingPerformance

Properties

Name Type Description
IpAddress object
Port object
View JSON Schema on GitHub

JSON Schema

global-accelerator-socket-address-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-socket-address-schema.json",
  "title": "SocketAddress",
  "description": "An IP address/port combination.",
  "type": "object",
  "properties": {
    "IpAddress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "The IP address for the socket address."
        }
      ]
    },
    "Port": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PortNumber"
        },
        {
          "description": "The port for the socket address."
        }
      ]
    }
  }
}