Skip to main content

ephemerides

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

Overview

Nameephemerides
TypeResource
Idaws.groundstation.ephemerides

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringA name that you can use to identify the ephemeris. (pattern: <code>[ a-zA-Z0-9_:-]{1,256}</code>)
creation_timestring (date-time)The time the ephemeris was uploaded in UTC.
enabledbooleanWhether or not the ephemeris is enabled.
ephemeris_idstringThe AWS Ground Station ephemeris ID. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)
ephemeris_typestringThe type of ephemeris. (TLE, OEM, AZ_EL, SERVICE_MANAGED)
priorityintegerA priority score that determines which ephemeris to use when multiple ephemerides overlap. Higher numbers take precedence. The default is 1. Must be 1 or greater.
source_s3_objectobjectSource Amazon S3 object used for the ephemeris.
statusstringThe status of the ephemeris. (VALIDATING, INVALID, ERROR, ENABLED, DISABLED, EXPIRED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_ephemeridesselectregionmaxResults, nextTokenList your existing ephemerides.

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 ephemerides to return.
nextTokenstringPagination token.

SELECT examples

List your existing ephemerides.

SELECT
name,
creation_time,
enabled,
ephemeris_id,
ephemeris_type,
priority,
source_s3_object,
status
FROM aws.groundstation.ephemerides
WHERE region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;