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

Unix epoch timestamp in UTC at which the time range ends.

Returns:

  • (Time)


3200
3201
3202
3203
3204
3205
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 3200

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

#start_timeTime

Unix epoch timestamp in UTC at which the time range starts.

Returns:

  • (Time)


3200
3201
3202
3203
3204
3205
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 3200

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