Class: Aws::GroundStation::Types::OEMEphemeris
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::OEMEphemeris
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-groundstation/types.rb
Overview
Ephemeris data in Orbit Ephemeris Message (OEM) format.
AWS Ground Station processes OEM Customer Provided Ephemerides according to the [CCSDS standard] with some extra restrictions. OEM files should be in KVN format. For more detail about the OEM format that AWS Ground Station supports, see [OEM ephemeris format] in the AWS Ground Station user guide.
[1]: public.ccsds.org/Pubs/502x0b3e1.pdf [2]: docs.aws.amazon.com/ground-station/latest/ug/providing-custom-ephemeris-data.html#oem-ephemeris-format
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#oem_data ⇒ String
The data for an OEM ephemeris, supplied directly in the request rather than through an S3 object.
-
#s3_object ⇒ Types::S3Object
Identifies the S3 object to be used as the ephemeris.
Instance Attribute Details
#oem_data ⇒ String
The data for an OEM ephemeris, supplied directly in the request rather than through an S3 object.
2299 2300 2301 2302 2303 2304 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2299 class OEMEphemeris < Struct.new( :oem_data, :s3_object) SENSITIVE = [] include Aws::Structure end |
#s3_object ⇒ Types::S3Object
Identifies the S3 object to be used as the ephemeris.
2299 2300 2301 2302 2303 2304 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2299 class OEMEphemeris < Struct.new( :oem_data, :s3_object) SENSITIVE = [] include Aws::Structure end |