Class: Aws::GroundStation::Types::EphemerisData
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::EphemerisData
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-groundstation/types.rb
Overview
EphemerisData is a union - when making an API calls you must set exactly one of the members.
Ephemeris data.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#oem ⇒ Types::OEMEphemeris
Ephemeris data in Orbit Ephemeris Message (OEM) format.
-
#tle ⇒ Types::TLEEphemeris
Two-line element set (TLE) ephemeris.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#oem ⇒ Types::OEMEphemeris
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
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 |
# File 'lib/aws-sdk-groundstation/types.rb', line 1274 class EphemerisData < Struct.new( :oem, :tle, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Oem < EphemerisData; end class Tle < EphemerisData; end class Unknown < EphemerisData; end end |
#tle ⇒ Types::TLEEphemeris
Two-line element set (TLE) ephemeris.
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 |
# File 'lib/aws-sdk-groundstation/types.rb', line 1274 class EphemerisData < Struct.new( :oem, :tle, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Oem < EphemerisData; end class Tle < EphemerisData; end class Unknown < EphemerisData; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1274 1275 1276 |
# File 'lib/aws-sdk-groundstation/types.rb', line 1274 def unknown @unknown end |