Amazon Ground Station · JSON Structure

Ground Station Get Config Response Structure

Type: object Properties: 6 Required: 4
Data ProcessingIoTSatellite CommunicationsSpace Technology

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

Properties

configArn configData configId configType name tags

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-get-config-response-structure.json",
  "name": "GetConfigResponse",
  "description": "<p/>",
  "type": "object",
  "properties": {
    "configArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigArn"
        },
        {
          "description": "ARN of a <code>Config</code> "
        }
      ]
    },
    "configData": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigTypeData"
        },
        {
          "description": "Data elements in a <code>Config</code>."
        }
      ]
    },
    "configId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "UUID of a <code>Config</code>."
        }
      ]
    },
    "configType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigCapabilityType"
        },
        {
          "description": "Type of a <code>Config</code>."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Name of a <code>Config</code>."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagsMap"
        },
        {
          "description": "Tags assigned to a <code>Config</code>."
        }
      ]
    }
  },
  "required": [
    "configArn",
    "configData",
    "configId",
    "name"
  ]
}