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

FulfillmentStartResponseSpecification

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

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

interface FulfillmentStartResponseSpecification {
allowInterrupt?: boolean | null;
delayInSeconds: number;
messageGroups: MessageGroup[];
}

§Properties

§
allowInterrupt?: boolean | null
[src]

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

§
delayInSeconds: number
[src]

The delay between when the Lambda fulfillment function starts running and the start message is played. If the Lambda function returns before the delay is over, the start message isn't played.

§
messageGroups: MessageGroup[]
[src]

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