Amazon Ground Station · JSON Structure

Ground Station Uplink Echo Config Structure

Information about an uplink echo Config.

Parameters from the AntennaUplinkConfig, corresponding to the specified AntennaUplinkConfigArn, are used when this UplinkEchoConfig is used in a contact.

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

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

Properties

antennaUplinkConfigArn enabled

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-uplink-echo-config-structure.json",
  "name": "UplinkEchoConfig",
  "description": "<p>Information about an uplink echo <code>Config</code>.</p> <p>Parameters from the <code>AntennaUplinkConfig</code>, corresponding to the specified <code>AntennaUplinkConfigArn</code>, are used when this <code>UplinkEchoConfig</code> is used in a contact.</p>",
  "type": "object",
  "properties": {
    "antennaUplinkConfigArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigArn"
        },
        {
          "description": "ARN of an uplink <code>Config</code>."
        }
      ]
    },
    "enabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Whether or not an uplink <code>Config</code> is enabled."
        }
      ]
    }
  },
  "required": [
    "antennaUplinkConfigArn",
    "enabled"
  ]
}