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

FulfillmentUpdateResponseSpecification

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

Provides settings for a message that is sent periodically to the user while a fulfillment Lambda function is running.

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

§Properties

§
allowInterrupt?: boolean | null
[src]

Determines whether the user can interrupt an update message while it is playing.

§
frequencyInSeconds: number
[src]

The frequency that a message is sent to the user. When the period ends, Amazon Lex chooses a message from the message groups and plays it to the user. If the fulfillment Lambda returns before the first period ends, an update message is not played to the user.

§
messageGroups: MessageGroup[]
[src]

One to 5 message groups that contain update messages. Amazon Lex chooses one of the messages to play to the user.