Skip to main content

satellites

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

Overview

Namesatellites
TypeResource
Idaws.groundstation.satellites

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
current_ephemerisobjectThe current ephemeris being used to compute the trajectory of the satellite.
ground_stationsarrayA list of ground stations to which the satellite is on-boarded.
norad_satellite_idintegerNORAD satellite ID number.
satellite_arnstringARN of a satellite. (pattern: <code>arn:aws:groundstation:([-a-z0-9]{1,50})?:[0-9]{12}:satellite/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)
satellite_idstringUUID of a satellite. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_satelliteselectsatellite_id, regionReturns a satellite.
list_satellitesselectregionmaxResults, nextTokenReturns a list of satellites.

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)
satellite_idstringUUID of a satellite.
maxResultsintegerMaximum number of satellites returned.
nextTokenstringNext token that can be supplied in the next call to get the next page of satellites.

SELECT examples

Returns a satellite.

SELECT
current_ephemeris,
ground_stations,
norad_satellite_id,
satellite_arn,
satellite_id
FROM aws.groundstation.satellites
WHERE satellite_id = '{{ satellite_id }}' -- required
AND region = '{{ region }}' -- required
;