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

DescribeIntentResponse

import type { DescribeIntentResponse } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";
interface DescribeIntentResponse {
botId?: string | null;
botVersion?: string | null;
creationDateTime?: Date | number | null;
description?: string | null;
dialogCodeHook?: DialogCodeHookSettings | null;
fulfillmentCodeHook?: FulfillmentCodeHookSettings | null;
initialResponseSetting?: InitialResponseSetting | null;
inputContexts?: InputContext[] | null;
intentClosingSetting?: IntentClosingSetting | null;
intentConfirmationSetting?: IntentConfirmationSetting | null;
intentId?: string | null;
intentName?: string | null;
kendraConfiguration?: KendraConfiguration | null;
lastUpdatedDateTime?: Date | number | null;
localeId?: string | null;
outputContexts?: OutputContext[] | null;
parentIntentSignature?: string | null;
sampleUtterances?: SampleUtterance[] | null;
slotPriorities?: SlotPriority[] | null;
}

§Properties

§
botId?: string | null
[src]

The identifier of the bot associated with the intent.

§
botVersion?: string | null
[src]

The version of the bot associated with the intent.

§
creationDateTime?: Date | number | null
[src]

A timestamp of the date and time that the intent was created.

§
description?: string | null
[src]

The description of the intent.

§
dialogCodeHook?: DialogCodeHookSettings | null
[src]

The Lambda function called during each turn of a conversation with the intent.

§
fulfillmentCodeHook?: FulfillmentCodeHookSettings | null
[src]

The Lambda function called when the intent is complete and ready for fulfillment.

§
initialResponseSetting?: InitialResponseSetting | null
[src]
§
inputContexts?: InputContext[] | null
[src]

A list of contexts that must be active for the intent to be considered for sending to the user.

§
intentClosingSetting?: IntentClosingSetting | null
[src]

The response that Amazon Lex sends to when the intent is closed.

§
intentConfirmationSetting?: IntentConfirmationSetting | null
[src]

Prompts that Amazon Lex sends to the user to confirm completion of an intent.

§
intentId?: string | null
[src]

The unique identifier assigned to the intent when it was created.

§
intentName?: string | null
[src]

The name specified for the intent.

§
kendraConfiguration?: KendraConfiguration | null
[src]

Configuration information required to use the AMAZON.KendraSearchIntent intent.

§
lastUpdatedDateTime?: Date | number | null
[src]

A timestamp of the date and time that the intent was last updated.

§
localeId?: string | null
[src]

The language and locale specified for the intent.

§
outputContexts?: OutputContext[] | null
[src]

A list of contexts that are activated when the intent is fulfilled.

§
parentIntentSignature?: string | null
[src]

The identifier of the built-in intent that this intent is derived from, if any.

§
sampleUtterances?: SampleUtterance[] | null
[src]

User utterances that trigger this intent.

§
slotPriorities?: SlotPriority[] | null
[src]

The list that determines the priority that slots should be elicited from the user.