ephemerides
Creates, updates, deletes, gets or lists an ephemerides resource.
Overview
| Name | ephemerides |
| Type | Resource |
| Id | aws.groundstation.ephemerides |
Fields
The following fields are returned by SELECT queries:
- list_ephemerides
| Name | Datatype | Description |
|---|---|---|
name | string | A name that you can use to identify the ephemeris. (pattern: <code>[ a-zA-Z0-9_:-]{1,256}</code>) |
creation_time | string (date-time) | The time the ephemeris was uploaded in UTC. |
enabled | boolean | Whether or not the ephemeris is enabled. |
ephemeris_id | string | The 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_type | string | The type of ephemeris. (TLE, OEM, AZ_EL, SERVICE_MANAGED) |
priority | integer | A 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_object | object | Source Amazon S3 object used for the ephemeris. |
status | string | The status of the ephemeris. (VALIDATING, INVALID, ERROR, ENABLED, DISABLED, EXPIRED) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_ephemerides | select | region | maxResults, nextToken | List 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
maxResults | integer | Maximum number of ephemerides to return. |
nextToken | string | Pagination token. |
SELECT examples
- list_ephemerides
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 }}'
;