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

IntentSummary

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

Summary information about an intent returned by the ListIntents operation.

interface IntentSummary {
description?: string | null;
inputContexts?: InputContext[] | null;
intentId?: string | null;
intentName?: string | null;
lastUpdatedDateTime?: Date | number | null;
outputContexts?: OutputContext[] | null;
parentIntentSignature?: string | null;
}

§Properties

§
description?: string | null
[src]

The description of the intent.

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

The input contexts that must be active for this intent to be considered for recognition.

§
intentId?: string | null
[src]

The unique identifier assigned to the intent. Use this ID to get detailed information about the intent with the DescribeIntent operation.

§
intentName?: string | null
[src]

The name of the intent.

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

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

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

The output contexts that are activated when this intent is fulfilled.

§
parentIntentSignature?: string | null
[src]

If this intent is derived from a built-in intent, the name of the parent intent.