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

PutIntentResponse

import type { PutIntentResponse } from "https://aws-api.deno.dev/v0.3/services/lexmodelbuildingservice.ts?docs=full";
interface PutIntentResponse {
checksum?: string | null;
conclusionStatement?: Statement | null;
confirmationPrompt?: Prompt | null;
createdDate?: Date | number | null;
createVersion?: boolean | null;
description?: string | null;
dialogCodeHook?: CodeHook | null;
followUpPrompt?: FollowUpPrompt | null;
fulfillmentActivity?: FulfillmentActivity | null;
inputContexts?: InputContext[] | null;
kendraConfiguration?: KendraConfiguration | null;
lastUpdatedDate?: Date | number | null;
name?: string | null;
outputContexts?: OutputContext[] | null;
parentIntentSignature?: string | null;
rejectionStatement?: Statement | null;
sampleUtterances?: string[] | null;
slots?: Slot[] | null;
version?: string | null;
}

§Properties

§
checksum?: string | null
[src]

Checksum of the $LATESTversion of the intent created or updated.

§
conclusionStatement?: Statement | null
[src]

After the Lambda function specified in thefulfillmentActivityintent fulfills the intent, Amazon Lex conveys this statement to the user.

§
confirmationPrompt?: Prompt | null
[src]

If defined in the intent, Amazon Lex prompts the user to confirm the intent before fulfilling it.

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

The date that the intent was created.

§
createVersion?: boolean | null
[src]

True if a new version of the intent was created. If the createVersion field was not specified in the request, the createVersion field is set to false in the response.

§
description?: string | null
[src]

A description of the intent.

§
dialogCodeHook?: CodeHook | null
[src]

If defined in the intent, Amazon Lex invokes this Lambda function for each user input.

§
followUpPrompt?: FollowUpPrompt | null
[src]

If defined in the intent, Amazon Lex uses this prompt to solicit additional user activity after the intent is fulfilled.

§
fulfillmentActivity?: FulfillmentActivity | null
[src]

If defined in the intent, Amazon Lex invokes this Lambda function to fulfill the intent after the user provides all of the information required by the intent.

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

An array of InputContext objects that lists the contexts that must be active for Amazon Lex to choose the intent in a conversation with the user.

§
kendraConfiguration?: KendraConfiguration | null
[src]

Configuration information, if any, required to connect to an Amazon Kendra index and use the AMAZON.KendraSearchIntent intent.

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

The date that the intent was updated. When you create a resource, the creation date and last update dates are the same.

§
name?: string | null
[src]

The name of the intent.

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

An array of OutputContext objects that lists the contexts that the intent activates when the intent is fulfilled.

§
parentIntentSignature?: string | null
[src]

A unique identifier for the built-in intent that this intent is based on.

§
rejectionStatement?: Statement | null
[src]

If the user answers "no" to the question defined in confirmationPrompt Amazon Lex responds with this statement to acknowledge that the intent was canceled.

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

An array of sample utterances that are configured for the intent.

§
slots?: Slot[] | null
[src]

An array of intent slots that are configured for the intent.

§
version?: string | null
[src]

The version of the intent. For a new intent, the version is always $LATEST.