Values.AggregatedUtterancesSummarySourceProvides summary information for aggregated utterances. The ListAggregatedUtterances operations combines all instances of the same utterance into a single aggregated summary.
type nonrec t = {utterance : Utterance.t option;The text of the utterance. If the utterance was used with the RecognizeUtterance operation, the text is the transcription of the audio utterance.
*)hitCount : HitCount.t option;The number of times that the utterance was detected by Amazon Lex during the time period. When an utterance is detected, it activates an intent or a slot.
*)missedCount : MissedCount.t option;The number of times that the utterance was missed by Amazon Lex An utterance is missed when it doesn't activate an intent or slot.
*)utteranceFirstRecordedInAggregationDuration : Timestamp.t option;The date and time that the utterance was first recorded in the time window for aggregation. An utterance may have been sent to Amazon Lex before that time, but only utterances within the time window are counted.
*)utteranceLastRecordedInAggregationDuration : Timestamp.t option;The last date and time that an utterance was recorded in the time window for aggregation. An utterance may be sent to Amazon Lex after that time, but only utterances within the time window are counted.
*)containsDataFromDeletedResources : BoxedBoolean.t option;Aggregated utterance data may contain utterances from versions of your bot that have since been deleted. When the aggregated contains this kind of data, this field is set to true.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BoxedBoolean.t
| `Integer of HitCount.t
| `String of Utterance.t
| `Timestamp of Timestamp.t ])
list ]