Class: Aws::Kendra::Types::TimeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::TimeRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Provides a range of time.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
The Unix timestamp for the end of the time range.
-
#start_time ⇒ Time
The Unix timestamp for the beginning of the time range.
Instance Attribute Details
#end_time ⇒ Time
The Unix timestamp for the end of the time range.
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_time ⇒ Time
The Unix timestamp for the beginning of the time range.
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 |