Class: Aws::LexModelsV2::Types::DateRangeFilter

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#end_date_timeTime

A timestamp indicating the end date for the date range filter.

Returns:

  • (Time)


4881
4882
4883
4884
4885
4886
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 4881

class DateRangeFilter < Struct.new(
  :start_date_time,
  :end_date_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_date_timeTime

A timestamp indicating the start date for the date range filter.

Returns:

  • (Time)


4881
4882
4883
4884
4885
4886
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 4881

class DateRangeFilter < Struct.new(
  :start_date_time,
  :end_date_time)
  SENSITIVE = []
  include Aws::Structure
end