Class: Aws::GroundStation::Types::TimeRange

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb

Overview

A time range with a start and end time.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_timeTime

Time in UTC at which the time range ends.

Returns:

  • (Time)


2710
2711
2712
2713
2714
2715
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2710

class TimeRange < Struct.new(
  :end_time,
  :start_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeTime

Time in UTC at which the time range starts.

Returns:

  • (Time)


2710
2711
2712
2713
2714
2715
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2710

class TimeRange < Struct.new(
  :end_time,
  :start_time)
  SENSITIVE = []
  include Aws::Structure
end