{ "$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": "

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": { "antennaUplinkConfigArn": { "allOf": [ { "$ref": "#/components/schemas/ConfigArn" }, { "description": "ARN of an uplink Config." } ] }, "enabled": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "Whether or not an uplink Config is enabled." } ] } }, "required": [ "antennaUplinkConfigArn", "enabled" ] }