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

IntentOverride

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

Override settings to configure the intent state.

interface IntentOverride {
name?: string | null;
slots?: {
[key: string]: SlotValueOverride | null | undefined;
}
| null;
}

§Properties

§
name?: string | null
[src]

The name of the intent. Only required when you're switching intents.

§
slots?: {
[key: string]: SlotValueOverride | null | undefined;
}
| null
[src]

A map of all of the slot value overrides for the intent. The name of the slot maps to the value of the slot. Slots that are not included in the map aren't overridden.,