ConnectionDetails

Egress address of AgentEndpoint with an optional mtu.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
mtu object
socketAddress object
View JSON Schema on GitHub

JSON Schema

ground-station-connection-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-schema/ground-station-connection-details-schema.json",
  "title": "ConnectionDetails",
  "description": "Egress address of AgentEndpoint with an optional mtu.",
  "type": "object",
  "properties": {
    "mtu": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "Maximum transmission unit (MTU) size in bytes of a dataflow endpoint."
        }
      ]
    },
    "socketAddress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SocketAddress"
        },
        {
          "description": "A socket address."
        }
      ]
    }
  },
  "required": [
    "socketAddress"
  ]
}