Class: Aws::LexModelsV2::Types::AnalyticsUtteranceMetricResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::AnalyticsUtteranceMetricResult
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
An object containing the results for the utterance metric you requested.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The metric that you requested.
-
#statistic ⇒ String
The summary statistic that you requested to calculate.
-
#value ⇒ Float
The value of the summary statistic for the metric that you requested.
Instance Attribute Details
#name ⇒ String
The metric that you requested.
Count
– The number of utterances.Missed
– The number of utterances that Amazon Lex failed to recognize.Detected
– The number of utterances that Amazon Lex managed to detect.UtteranceTimestamp
– The date and time of the utterance.
1431 1432 1433 1434 1435 1436 1437 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 1431 class AnalyticsUtteranceMetricResult < Struct.new( :name, :statistic, :value) SENSITIVE = [] include Aws::Structure end |
#statistic ⇒ String
The summary statistic that you requested to calculate.
Sum
– The total count for the category you provide inname
.Average
– The total count divided by the number of utterances in the category you provide inname
.Max
– The highest count in the category you provide inname
.
1431 1432 1433 1434 1435 1436 1437 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 1431 class AnalyticsUtteranceMetricResult < Struct.new( :name, :statistic, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The value of the summary statistic for the metric that you requested.
1431 1432 1433 1434 1435 1436 1437 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 1431 class AnalyticsUtteranceMetricResult < Struct.new( :name, :statistic, :value) SENSITIVE = [] include Aws::Structure end |