Class: Aws::LexModelsV2::Types::AnalyticsIntentStageMetricResult

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb

Overview

An object containing the results for an intent stage metric you requested.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The metric that you requested.

  • Count – The number of times the intent stage occurred.

  • Success – The number of times the intent stage succeeded.

  • Failure – The number of times the intent stage failed.

  • Dropped – The number of times the user dropped the intent stage.

  • Retry – The number of times the bot tried to elicit a response from the user at this stage.

Returns:

  • (String)


788
789
790
791
792
793
794
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 788

class AnalyticsIntentStageMetricResult < Struct.new(
  :name,
  :statistic,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#statisticString

The summary statistic that you requested to calculate.

  • Sum – The total count for the category you provide in name.

  • Average – The total count divided by the number of intent stages in the category you provide in name.

  • Max – The highest count in the category you provide in name.

Returns:

  • (String)


788
789
790
791
792
793
794
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 788

class AnalyticsIntentStageMetricResult < Struct.new(
  :name,
  :statistic,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueFloat

The value of the summary statistic for the metric that you requested.

Returns:

  • (Float)


788
789
790
791
792
793
794
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 788

class AnalyticsIntentStageMetricResult < Struct.new(
  :name,
  :statistic,
  :value)
  SENSITIVE = []
  include Aws::Structure
end