Amazon Global Accelerator · JSON Structure

Global Accelerator Socket Address Structure

An IP address/port combination.

Type: object Properties: 2
AvailabilityCDNGlobalLoad BalancingNetworkingPerformance

SocketAddress is a JSON Structure definition published by Amazon Global Accelerator, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

IpAddress Port

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-global-accelerator/refs/heads/main/json-structure/global-accelerator-socket-address-structure.json",
  "name": "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."
        }
      ]
    }
  }
}