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

FulfillmentCodeHookSettings

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

Determines if a Lambda function should be invoked for a specific intent.

interface FulfillmentCodeHookSettings {
active?: boolean | null;
enabled: boolean;
fulfillmentUpdatesSpecification?: FulfillmentUpdatesSpecification | null;
postFulfillmentStatusSpecification?: PostFulfillmentStatusSpecification | null;
}

§Properties

§
active?: boolean | null
[src]

Determines whether the fulfillment code hook is used. When active is false, the code hook doesn't run.

§
enabled: boolean
[src]

Indicates whether a Lambda function should be invoked to fulfill a specific intent.

§
fulfillmentUpdatesSpecification?: FulfillmentUpdatesSpecification | null
[src]

Provides settings for update messages sent to the user for long-running Lambda fulfillment functions. Fulfillment updates can be used only with streaming conversations.

§
postFulfillmentStatusSpecification?: PostFulfillmentStatusSpecification | null
[src]

Provides settings for messages sent to the user for after the Lambda fulfillment function completes. Post-fulfillment messages can be sent for both streaming and non-streaming conversations.