Class: Aws::GroundStation::Types::ProgramTrackSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::ProgramTrackSettings
- Defined in:
- gems/aws-sdk-groundstation/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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#az_el ⇒ Types::AzElProgramTrackSettings
Program track settings for AzElEphemeris.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#az_el ⇒ Types::AzElProgramTrackSettings
Program track settings for AzElEphemeris.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2943 class ProgramTrackSettings < Struct.new( :az_el, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AzEl < ProgramTrackSettings; end class Unknown < ProgramTrackSettings; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2943 2944 2945 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2943 def unknown @unknown end |