Skip to main content

ground_stations

Creates, updates, deletes, gets or lists a ground_stations resource.

Overview

Nameground_stations
TypeResource
Idaws.groundstation.ground_stations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ground_station_idstringID of a ground station. (pattern: <code>[ a-zA-Z0-9-._:=]{4,97}</code>)
ground_station_namestringName of a ground station. (pattern: <code>[ a-zA-Z0-9-._:=]{4,97}</code>)
regionstringGround station Region. (pattern: <code>[\w-]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_ground_stationsselectregionsatelliteId, maxResults, nextTokenReturns a list of ground stations.

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)
maxResultsintegerMaximum number of ground stations returned.
nextTokenstringNext token that can be supplied in the next call to get the next page of ground stations.
satelliteIdstringSatellite ID to retrieve on-boarded ground stations.

SELECT examples

Returns a list of ground stations.

SELECT
ground_station_id,
ground_station_name,
region
FROM aws.groundstation.ground_stations
WHERE region = '{{ region }}' -- required
AND satelliteId = '{{ satelliteId }}'
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;