Skip to main content

agent_configurations

Creates, updates, deletes, gets or lists an agent_configurations resource.

Overview

Nameagent_configurations
TypeResource
Idaws.groundstation.agent_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
agent_idstringUUID of agent. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)
tasking_documentstringTasking document for agent.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_agent_configurationselectagent_id, regionFor use by AWS Ground Station Agent and shouldn't be called directly. Gets the latest configuration information for a registered agent.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
agent_idstringUUID of agent to get configuration information for.
regionstringAWS region (default: us-east-1)

SELECT examples

For use by AWS Ground Station Agent and shouldn't be called directly. Gets the latest configuration information for a registered agent.

SELECT
agent_id,
tasking_document
FROM aws.groundstation.agent_configurations
WHERE agent_id = '{{ agent_id }}' -- required
AND region = '{{ region }}' -- required
;