Class: Aws::GroundStation::Types::ProgramTrackSettings

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-groundstation/types.rb

Overview

Note:

ProgramTrackSettings is a union - when making an API calls you must set exactly one of the members.

Note:

ProgramTrackSettings is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProgramTrackSettings corresponding to the set member.

Program track settings for an antenna during a contact.

Direct Known Subclasses

AzEl, Unknown

Defined Under Namespace

Classes: AzEl, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#az_elTypes::AzElProgramTrackSettings

Program track settings for AzElEphemeris.



2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
# File 'lib/aws-sdk-groundstation/types.rb', line 2892

class ProgramTrackSettings < Struct.new(
  :az_el,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class AzEl < ProgramTrackSettings; end
  class Unknown < ProgramTrackSettings; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2892
2893
2894
# File 'lib/aws-sdk-groundstation/types.rb', line 2892

def unknown
  @unknown
end