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

Oem, Tle, Unknown

Defined Under Namespace

Classes: Oem, Tle, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#oemTypes::EphemerisDescription

Description of ephemeris.



1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1408

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

#tleTypes::EphemerisDescription

Description of ephemeris.



1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1408

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1408
1409
1410
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1408

def unknown
  @unknown
end