Class: Aws::GroundStation::Types::EphemerisTypeDescription

Inherits:
Struct
  • Object
show all
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.

Direct Known Subclasses

AzEl, Oem, Tle, Unknown

Defined Under Namespace

Classes: AzEl, Oem, Tle, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#az_elTypes::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

#oemTypes::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

#tleTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1946
1947
1948
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1946

def unknown
  @unknown
end