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.
4954 4955 4956 4957 4958 4959 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 4954 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.
4954 4955 4956 4957 4958 4959 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 4954 class DateRangeFilter < Struct.new( :start_date_time, :end_date_time) SENSITIVE = [] include Aws::Structure end |