Class: Aws::LexModelsV2::Types::SessionDataSortBy

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

Instance Attribute Details

#nameString

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 a sessionId and an originatingRequestId.

  • numberOfTurns – The number of turns that the session took.

  • conversationDurationSeconds – The duration of the conversation in seconds.

Returns:

  • (String)


12077
12078
12079
12080
12081
12082
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 12077

class SessionDataSortBy < Struct.new(
  :name,
  :order)
  SENSITIVE = []
  include Aws::Structure
end

#orderString

Specifies whether to sort the results in ascending or descending order.

Returns:

  • (String)


12077
12078
12079
12080
12081
12082
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 12077

class SessionDataSortBy < Struct.new(
  :name,
  :order)
  SENSITIVE = []
  include Aws::Structure
end