create_ephemeris
(**kwargs)¶Creates an Ephemeris with the specified EphemerisData
.
See also: AWS API Documentation
Request Syntax
response = client.create_ephemeris(
enabled=True|False,
ephemeris={
'oem': {
'oemData': 'string',
's3Object': {
'bucket': 'string',
'key': 'string',
'version': 'string'
}
},
'tle': {
's3Object': {
'bucket': 'string',
'key': 'string',
'version': 'string'
},
'tleData': [
{
'tleLine1': 'string',
'tleLine2': 'string',
'validTimeRange': {
'endTime': datetime(2015, 1, 1),
'startTime': datetime(2015, 1, 1)
}
},
]
}
},
expirationTime=datetime(2015, 1, 1),
kmsKeyArn='string',
name='string',
priority=123,
satelliteId='string',
tags={
'string': 'string'
}
)
Whether to set the ephemeris status to ENABLED
after validation.
Setting this to false will set the ephemeris status to DISABLED
after validation.
Ephemeris data.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set: oem
, tle
.
Ephemeris data in Orbit Ephemeris Message (OEM) format.
The data for an OEM ephemeris, supplied directly in the request rather than through an S3 object.
Identifies the S3 object to be used as the ephemeris.
An Amazon S3 Bucket name.
An Amazon S3 key for the ephemeris.
For versioned S3 objects, the version to use for the ephemeris.
Two-line element set (TLE) ephemeris.
Identifies the S3 object to be used as the ephemeris.
An Amazon S3 Bucket name.
An Amazon S3 key for the ephemeris.
For versioned S3 objects, the version to use for the ephemeris.
The data for a TLE ephemeris, supplied directly in the request rather than through an S3 object.
Two-line element set (TLE) data.
First line of two-line element set (TLE) data.
Second line of two-line element set (TLE) data.
The valid time range for the TLE. Gaps or overlap are not permitted.
Time in UTC at which the time range ends.
Time in UTC at which the time range starts.
EXPIRED
.[REQUIRED]
A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.
Customer-provided priority score to establish the order in which overlapping ephemerides should be used.
The default for customer-provided ephemeris priority is 1, and higher numbers take precedence.
Priority must be 1 or greater
[REQUIRED]
AWS Ground Station satellite ID for this ephemeris.
Tags assigned to an ephemeris.
dict
Response Syntax
{
'ephemerisId': 'string'
}
Response Structure
(dict) --
ephemerisId (string) --
The AWS Ground Station ephemeris ID.
Exceptions
GroundStation.Client.exceptions.InvalidParameterException
GroundStation.Client.exceptions.DependencyException
GroundStation.Client.exceptions.ResourceNotFoundException