Class: Aws::Kendra::Types::TimeRange

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kendra/types.rb

Overview

Provides a range of time.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_timeTime

The Unix timestamp for the end of the time range.

Returns:

  • (Time)


10405
10406
10407
10408
10409
10410
# File 'lib/aws-sdk-kendra/types.rb', line 10405

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

#start_timeTime

The Unix timestamp for the beginning of the time range.

Returns:

  • (Time)


10405
10406
10407
10408
10409
10410
# File 'lib/aws-sdk-kendra/types.rb', line 10405

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