UplinkEchoConfig

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.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
antennaUplinkConfigArn object
enabled object
View JSON Schema on GitHub

JSON Schema

ground-station-uplink-echo-config-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-uplink-echo-config-schema.json",
  "title": "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"
  ]
}