Class: Aws::LexModelsV2::Types::LexTranscriptFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::LexTranscriptFilter
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Note:
When making an API call, you may pass LexTranscriptFilter data as a hash:
{
date_range_filter: {
start_date_time: Time.now, # required
end_date_time: Time.now, # required
},
}
The object that contains transcript filter details that are associated with a bot recommendation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date_range_filter ⇒ Types::DateRangeFilter
The object that contains a date range filter that will be applied to the transcript.
Instance Attribute Details
#date_range_filter ⇒ Types::DateRangeFilter
The object that contains a date range filter that will be applied to the transcript. Specify this object if you want Amazon Lex to only read the files that are within the date range.
7168 7169 7170 7171 7172 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 7168 class LexTranscriptFilter < Struct.new( :date_range_filter) SENSITIVE = [] include Aws::Structure end |