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

StillWaitingResponseSpecification

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

Defines the messages that Amazon Lex sends to a user to remind them that the bot is waiting for a response.

interface StillWaitingResponseSpecification {
allowInterrupt?: boolean | null;
frequencyInSeconds: number;
messageGroups: MessageGroup[];
timeoutInSeconds: number;
}

§Properties

§
allowInterrupt?: boolean | null
[src]

Indicates that the user can interrupt the response by speaking while the message is being played.

§
frequencyInSeconds: number
[src]

How often a message should be sent to the user. Minimum of 1 second, maximum of 5 minutes.

§
messageGroups: MessageGroup[]
[src]

One or more message groups, each containing one or more messages, that define the prompts that Amazon Lex sends to the user.

§
timeoutInSeconds: number
[src]

If Amazon Lex waits longer than this length of time for a response, it will stop sending messages.