Class: Aws::LexModelsV2::Types::SessionDataSortBy
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::SessionDataSortBy
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
An object specifying the measure and method by which to sort the session analytics data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The measure by which to sort the session analytics data.
-
#order ⇒ String
Specifies whether to sort the results in ascending or descending order.
Instance Attribute Details
#name ⇒ String
The measure by which to sort the session analytics data.
conversationStartTime
– The date and time when the conversation began. A conversation is defined as a unique combination of asessionId
and anoriginatingRequestId
.numberOfTurns
– The number of turns that the session took.conversationDurationSeconds
– The duration of the conversation in seconds.
12150 12151 12152 12153 12154 12155 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 12150 class SessionDataSortBy < Struct.new( :name, :order) SENSITIVE = [] include Aws::Structure end |
#order ⇒ String
Specifies whether to sort the results in ascending or descending order.
12150 12151 12152 12153 12154 12155 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 12150 class SessionDataSortBy < Struct.new( :name, :order) SENSITIVE = [] include Aws::Structure end |