ground_stations
Creates, updates, deletes, gets or lists a ground_stations resource.
Overview
| Name | ground_stations |
| Type | Resource |
| Id | aws.groundstation.ground_stations |
Fields
The following fields are returned by SELECT queries:
- list_ground_stations
| Name | Datatype | Description |
|---|---|---|
ground_station_id | string | ID of a ground station. (pattern: <code>[ a-zA-Z0-9-._:=]{4,97}</code>) |
ground_station_name | string | Name of a ground station. (pattern: <code>[ a-zA-Z0-9-._:=]{4,97}</code>) |
region | string | Ground station Region. (pattern: <code>[\w-]+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_ground_stations | select | region | satelliteId, maxResults, nextToken | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
maxResults | integer | Maximum number of ground stations returned. |
nextToken | string | Next token that can be supplied in the next call to get the next page of ground stations. |
satelliteId | string | Satellite ID to retrieve on-boarded ground stations. |
SELECT examples
- list_ground_stations
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 }}'
;