Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AggregatedUtterancesSummary

import type { AggregatedUtterancesSummary } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";

Provides summary information for aggregated utterances. The ListAggregatedUtterances operations combines all instances of the same utterance into a single aggregated summary.

interface AggregatedUtterancesSummary {
containsDataFromDeletedResources?: boolean | null;
hitCount?: number | null;
missedCount?: number | null;
utterance?: string | null;
utteranceFirstRecordedInAggregationDuration?: Date | number | null;
utteranceLastRecordedInAggregationDuration?: Date | number | null;
}

§Properties

§
containsDataFromDeletedResources?: boolean | null
[src]

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.

§
hitCount?: number | null
[src]

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?: number | null
[src]

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.

§
utterance?: string | null
[src]

The text of the utterance. If the utterance was used with the RecognizeUtterance operation, the text is the transcription of the audio utterance.

§
utteranceFirstRecordedInAggregationDuration?: Date | number | null
[src]

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?: Date | number | null
[src]

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.