Class: Aws::GroundStation::Types::AzElSegments

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

Instance Attribute Details

#angle_unitString

The unit of measure for azimuth and elevation angles. All angles in all segments must use the same unit.

Returns:

  • (String)


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_listArray<Types::AzElSegment>

List of azimuth elevation segments.

Must contain between 1 and 100 segments. Segments must be in chronological order with no overlaps.

Returns:



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