Class: Aws::GroundStation::Types::EphemerisTypeDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::EphemerisTypeDescription
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-groundstation/types.rb
Overview
Note:
EphemerisTypeDescription is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EphemerisTypeDescription corresponding to the set member.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#oem ⇒ Types::EphemerisDescription
Description of ephemeris.
-
#tle ⇒ Types::EphemerisDescription
Description of ephemeris.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#oem ⇒ Types::EphemerisDescription
Description of ephemeris.
1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 |
# File 'lib/aws-sdk-groundstation/types.rb', line 1419 class EphemerisTypeDescription < Struct.new( :oem, :tle, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Oem < EphemerisTypeDescription; end class Tle < EphemerisTypeDescription; end class Unknown < EphemerisTypeDescription; end end |
#tle ⇒ Types::EphemerisDescription
Description of ephemeris.
1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 |
# File 'lib/aws-sdk-groundstation/types.rb', line 1419 class EphemerisTypeDescription < Struct.new( :oem, :tle, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Oem < EphemerisTypeDescription; end class Tle < EphemerisTypeDescription; end class Unknown < EphemerisTypeDescription; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1419 1420 1421 |
# File 'lib/aws-sdk-groundstation/types.rb', line 1419 def unknown @unknown end |