Class: Aws::GroundStation::Types::TLEData
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::TLEData
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-groundstation/types.rb
Overview
Two-line element set (TLE) data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tle_line_1 ⇒ String
First line of two-line element set (TLE) data.
-
#tle_line_2 ⇒ String
Second line of two-line element set (TLE) data.
-
#valid_time_range ⇒ Types::TimeRange
The valid time range for the TLE.
Instance Attribute Details
#tle_line_1 ⇒ String
First line of two-line element set (TLE) data.
2671 2672 2673 2674 2675 2676 2677 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2671 class TLEData < Struct.new( :tle_line_1, :tle_line_2, :valid_time_range) SENSITIVE = [] include Aws::Structure end |
#tle_line_2 ⇒ String
Second line of two-line element set (TLE) data.
2671 2672 2673 2674 2675 2676 2677 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2671 class TLEData < Struct.new( :tle_line_1, :tle_line_2, :valid_time_range) SENSITIVE = [] include Aws::Structure end |
#valid_time_range ⇒ Types::TimeRange
The valid time range for the TLE. Gaps or overlap are not permitted.
2671 2672 2673 2674 2675 2676 2677 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2671 class TLEData < Struct.new( :tle_line_1, :tle_line_2, :valid_time_range) SENSITIVE = [] include Aws::Structure end |