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

SlotValueOverride

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

The slot values that Amazon Lex uses when it sets slot values in a dialog step.

interface SlotValueOverride {
shape?: SlotShape | null;
value?: SlotValue | null;
values?: SlotValueOverride[] | null;
}

§Properties

§
shape?: SlotShape | null
[src]

When the shape value is List, it indicates that the values field contains a list of slot values. When the value is Scalar, it indicates that the value field contains a single value.

§
value?: SlotValue | null
[src]

The current value of the slot.

§
values?: SlotValueOverride[] | null
[src]

A list of one or more values that the user provided for the slot. For example, for a slot that elicits pizza toppings, the values might be "pepperoni" and "pineapple."