Information about the dataflow endpoint Config.
Config
{ "$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-dataflow-endpoint-config-schema.json", "title": "DataflowEndpointConfig", "description": "Information about the dataflow endpoint <code>Config</code>.", "type": "object", "properties": { "dataflowEndpointName": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "Name of a dataflow endpoint." } ] }, "dataflowEndpointRegion": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "Region of a dataflow endpoint." } ] } }, "required": [ "dataflowEndpointName" ] }