GroundStation / Paginator / ListEphemerides
ListEphemerides¶
- class GroundStation.Paginator.ListEphemerides¶
paginator = client.get_paginator('list_ephemerides')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
GroundStation.Client.list_ephemerides().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( 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', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': '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) –
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ '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' } }, ], 'NextToken': 'string' }
Response Structure
(dict) –
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.
NextToken (string) –
A token to resume pagination.