Class: Aws::LexModelsV2::Types::DateRangeFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::DateRangeFilter
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
The object used for specifying the data range that the customer wants Amazon Lex to read through in the input transcripts.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_date_time ⇒ Time
A timestamp indicating the end date for the date range filter.
-
#start_date_time ⇒ Time
A timestamp indicating the start date for the date range filter.
Instance Attribute Details
#end_date_time ⇒ Time
A timestamp indicating the end date for the date range filter.
4634 4635 4636 4637 4638 4639 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 4634 class DateRangeFilter < Struct.new( :start_date_time, :end_date_time) SENSITIVE = [] include Aws::Structure end |
#start_date_time ⇒ Time
A timestamp indicating the start date for the date range filter.
4634 4635 4636 4637 4638 4639 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 4634 class DateRangeFilter < Struct.new( :start_date_time, :end_date_time) SENSITIVE = [] include Aws::Structure end |