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

UtteranceList

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

Provides a list of utterances that have been made to a specific version of your bot. The list contains a maximum of 100 utterances.

interface UtteranceList {
botVersion?: string | null;
utterances?: UtteranceData[] | null;
}

§Properties

§
botVersion?: string | null
[src]

The version of the bot that processed the list.

§
utterances?: UtteranceData[] | null
[src]

One or more "UtteranceData" objects that contain information about the utterances that have been made to a bot. The maximum number of object is 100.