agent_configurations
Creates, updates, deletes, gets or lists an agent_configurations resource.
Overview
| Name | agent_configurations |
| Type | Resource |
| Id | aws.groundstation.agent_configurations |
Fields
The following fields are returned by SELECT queries:
- get_agent_configuration
| Name | Datatype | Description |
|---|---|---|
agent_id | string | UUID 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_document | string | Tasking document for agent. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_agent_configuration | select | agent_id, region | For 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.
| Name | Datatype | Description |
|---|---|---|
agent_id | string | UUID of agent to get configuration information for. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_agent_configuration
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
;