Skip to main content

agents

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

Overview

Nameagents
TypeResource
Idaws.groundstation.agents

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
register_agentinsertregion, discoveryData, agentDetailsFor use by AWS Ground Station Agent and shouldn't be called directly. Registers a new agent with AWS Ground Station.

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
regionstringAWS region (default: us-east-1)

INSERT examples

For use by AWS Ground Station Agent and shouldn't be called directly. Registers a new agent with AWS Ground Station.

INSERT INTO aws.groundstation.agents (
discoveryData,
agentDetails,
tags,
region
)
SELECT
'{{ discoveryData }}' /* required */,
'{{ agentDetails }}' /* required */,
'{{ tags }}',
'{{ region }}'
RETURNING
agent_id
;