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

Prompt

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

Obtains information from the user. To define a prompt, provide one or more messages and specify the number of attempts to get information from the user. If you provide more than one message, Amazon Lex chooses one of the messages to use to prompt the user. For more information, see "how-it-works".

interface Prompt {
maxAttempts: number;
messages: Message[];
responseCard?: string | null;
}

§Properties

§
maxAttempts: number
[src]

The number of times to prompt the user for information.

§
messages: Message[]
[src]

An array of objects, each of which provides a message string and its type. You can specify the message string in plain text or in Speech Synthesis Markup Language (SSML).

§
responseCard?: string | null
[src]

A response card. Amazon Lex uses this prompt at runtime, in the PostText API response. It substitutes session attributes and slot values for placeholders in the response card. For more information, see "ex-resp-card".