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

FulfillmentUpdatesSpecification

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

Provides information for updating the user on the progress of fulfilling an intent.

interface FulfillmentUpdatesSpecification {
active: boolean;
timeoutInSeconds?: number | null;
}

§Properties

§
active: boolean
[src]

Determines whether fulfillment updates are sent to the user. When this field is true, updates are sent.

If the active field is set to true, the startResponse, updateResponse, and timeoutInSeconds fields are required.

§

Provides configuration information for the message sent to users when the fulfillment Lambda functions starts running.

§
timeoutInSeconds?: number | null
[src]

The length of time that the fulfillment Lambda function should run before it times out.

§

Provides configuration information for messages sent periodically to the user while the fulfillment Lambda function is running.