Class: Aws::IoTSiteWise::Types::TimeInterval

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

Overview

Contains a time interval with a start time and an end time. Use a time interval to restrict an operation, such as a search, to a specific time range.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_timeTypes::TimeInNanos

The end of the time interval.

Returns:



14064
14065
14066
14067
14068
14069
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 14064

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

#start_timeTypes::TimeInNanos

The start of the time interval.

Returns:



14064
14065
14066
14067
14068
14069
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 14064

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