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.
1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1946 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.
1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1946 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.
1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1946 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
1946 1947 1948 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1946 def unknown @unknown end |