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

DialogCodeHookInvocationSetting

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

Settings that specify the dialog code hook that is called by Amazon Lex at a step of the conversation.

interface DialogCodeHookInvocationSetting {
active: boolean;
enableCodeHookInvocation: boolean;
invocationLabel?: string | null;
postCodeHookSpecification: PostDialogCodeHookInvocationSpecification;
}

§Properties

§
active: boolean
[src]

Determines whether a dialog code hook is used when the intent is activated.

§
enableCodeHookInvocation: boolean
[src]

Indicates whether a Lambda function should be invoked for the dialog.

§
invocationLabel?: string | null
[src]

A label that indicates the dialog step from which the dialog code hook is happening.

§

Contains the responses and actions that Amazon Lex takes after the Lambda function is complete.