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

WaitAndContinueSpecification

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

Specifies the prompts that Amazon Lex uses while a bot is waiting for customer input.

interface WaitAndContinueSpecification {
active?: boolean | null;
continueResponse: ResponseSpecification;
stillWaitingResponse?: StillWaitingResponseSpecification | null;
waitingResponse: ResponseSpecification;
}

§Properties

§
active?: boolean | null
[src]

Specifies whether the bot will wait for a user to respond. When this field is false, wait and continue responses for a slot aren't used. If the active field isn't specified, the default is true.

§
continueResponse: ResponseSpecification
[src]

The response that Amazon Lex sends to indicate that the bot is ready to continue the conversation.

§
stillWaitingResponse?: StillWaitingResponseSpecification | null
[src]

A response that Amazon Lex sends periodically to the user to indicate that the bot is still waiting for input from the user.

§

The response that Amazon Lex sends to indicate that the bot is waiting for the conversation to continue.