Class: Aws::GroundStation::Types::EphemerisTypeDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::EphemerisTypeDescription
- Defined in:
- gems/aws-sdk-groundstation/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
Classes: AzEl, Oem, Tle, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#az_el ⇒ Types::EphemerisDescription
Description of ephemeris.
-
#oem ⇒ Types::EphemerisDescription
Description of ephemeris.
-
#tle ⇒ Types::EphemerisDescription
Description of ephemeris.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#az_el ⇒ Types::EphemerisDescription
Description of ephemeris.
1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1919 class EphemerisTypeDescription < Struct.new( :tle, :oem, :az_el, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Tle < EphemerisTypeDescription; end class Oem < EphemerisTypeDescription; end class AzEl < EphemerisTypeDescription; end class Unknown < EphemerisTypeDescription; end end |
#oem ⇒ Types::EphemerisDescription
Description of ephemeris.
1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1919 class EphemerisTypeDescription < Struct.new( :tle, :oem, :az_el, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Tle < EphemerisTypeDescription; end class Oem < EphemerisTypeDescription; end class AzEl < EphemerisTypeDescription; end class Unknown < EphemerisTypeDescription; end end |
#tle ⇒ Types::EphemerisDescription
Description of ephemeris.
1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1919 class EphemerisTypeDescription < Struct.new( :tle, :oem, :az_el, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Tle < EphemerisTypeDescription; end class Oem < EphemerisTypeDescription; end class AzEl < EphemerisTypeDescription; end class Unknown < EphemerisTypeDescription; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1919 1920 1921 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1919 def unknown @unknown end |