GroundStation / Client / list_ephemerides
list_ephemerides¶
- GroundStation.Client.list_ephemerides(**kwargs)¶
List your existing ephemerides.
See also: AWS API Documentation
Request Syntax
response = client.list_ephemerides( satelliteId='string', ephemerisType='TLE'|'OEM'|'AZ_EL'|'SERVICE_MANAGED', startTime=datetime(2015, 1, 1), endTime=datetime(2015, 1, 1), statusList=[ 'VALIDATING'|'INVALID'|'ERROR'|'ENABLED'|'DISABLED'|'EXPIRED', ], maxResults=123, nextToken='string' )
- Parameters:
satelliteId (string) – The AWS Ground Station satellite ID to list ephemeris for.
ephemerisType (string) – Filter ephemerides by type. If not specified, all ephemeris types will be returned.
startTime (datetime) –
[REQUIRED]
The start time for the list operation in UTC. Returns ephemerides with expiration times within your specified time range.
endTime (datetime) –
[REQUIRED]
The end time for the list operation in UTC. Returns ephemerides with expiration times within your specified time range.
statusList (list) –
The list of ephemeris status to return.
(string) –
maxResults (integer) – Maximum number of ephemerides to return.
nextToken (string) – Pagination token.
- Return type:
dict
- Returns:
Response Syntax
{ 'nextToken': 'string', 'ephemerides': [ { 'ephemerisId': 'string', 'ephemerisType': 'TLE'|'OEM'|'AZ_EL'|'SERVICE_MANAGED', 'status': 'VALIDATING'|'INVALID'|'ERROR'|'ENABLED'|'DISABLED'|'EXPIRED', 'priority': 123, 'enabled': True|False, 'creationTime': datetime(2015, 1, 1), 'name': 'string', 'sourceS3Object': { 'bucket': 'string', 'key': 'string', 'version': 'string' } }, ] }
Response Structure
(dict) –
nextToken (string) –
Pagination token.
ephemerides (list) –
List of ephemerides.
(dict) –
Ephemeris item.
ephemerisId (string) –
The AWS Ground Station ephemeris ID.
ephemerisType (string) –
The type of ephemeris.
status (string) –
The status of the ephemeris.
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.
enabled (boolean) –
Whether or not the ephemeris is enabled.
creationTime (datetime) –
The time the ephemeris was uploaded in UTC.
name (string) –
A name that you can use to identify the ephemeris.
sourceS3Object (dict) –
Source Amazon S3 object used for the ephemeris.
bucket (string) –
An Amazon S3 Bucket name.
key (string) –
An Amazon S3 key for the ephemeris.
version (string) –
For versioned Amazon S3 objects, the version to use for the ephemeris.
Exceptions