Class: Aws::GroundStation::Types::AzElSegments
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::AzElSegments
- Defined in:
- gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb
Overview
Azimuth elevation segment collection.
Contains five or more time-ordered segments that define antenna pointing angles over the ephemeris validity period.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#angle_unit ⇒ String
The unit of measure for azimuth and elevation angles.
-
#az_el_segment_list ⇒ Array<Types::AzElSegment>
List of azimuth elevation segments.
Instance Attribute Details
#angle_unit ⇒ String
The unit of measure for azimuth and elevation angles. All angles in all segments must use the same unit.
328 329 330 331 332 333 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 328 class AzElSegments < Struct.new( :angle_unit, :az_el_segment_list) SENSITIVE = [] include Aws::Structure end |
#az_el_segment_list ⇒ Array<Types::AzElSegment>
List of azimuth elevation segments.
Must contain between 1 and 100 segments. Segments must be in chronological order with no overlaps.
328 329 330 331 332 333 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 328 class AzElSegments < Struct.new( :angle_unit, :az_el_segment_list) SENSITIVE = [] include Aws::Structure end |