Class: Aws::GroundStation::Types::TimeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::TimeRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-groundstation/types.rb
Overview
A time range with a start and end time.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
Unix epoch timestamp in UTC at which the time range ends.
-
#start_time ⇒ Time
Unix epoch timestamp in UTC at which the time range starts.
Instance Attribute Details
#end_time ⇒ Time
Unix epoch timestamp in UTC at which the time range ends.
3528 3529 3530 3531 3532 3533 |
# File 'lib/aws-sdk-groundstation/types.rb', line 3528 class TimeRange < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
Unix epoch timestamp in UTC at which the time range starts.
3528 3529 3530 3531 3532 3533 |
# File 'lib/aws-sdk-groundstation/types.rb', line 3528 class TimeRange < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |