Amazon Ground Station · JSON Structure

Ground Station Ranged Connection Details Structure

Ingress address of AgentEndpoint with a port range and an optional mtu.

Type: object Properties: 2 Required: 1
Data ProcessingIoTSatellite CommunicationsSpace Technology

RangedConnectionDetails is a JSON Structure definition published by Amazon Ground Station, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

mtu socketAddress

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-ground-station/refs/heads/main/json-structure/ground-station-ranged-connection-details-structure.json",
  "name": "RangedConnectionDetails",
  "description": "Ingress address of AgentEndpoint with a port range and an optional mtu.",
  "type": "object",
  "properties": {
    "mtu": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RangedConnectionDetailsMtuInteger"
        },
        {
          "description": "Maximum transmission unit (MTU) size in bytes of a dataflow endpoint."
        }
      ]
    },
    "socketAddress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RangedSocketAddress"
        },
        {
          "description": "A ranged socket address."
        }
      ]
    }
  },
  "required": [
    "socketAddress"
  ]
}