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

SlotSummary

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

Summary information about a slot, a value that the bot elicits from the user.

interface SlotSummary {
description?: string | null;
lastUpdatedDateTime?: Date | number | null;
slotConstraint?: SlotConstraint | null;
slotId?: string | null;
slotName?: string | null;
slotTypeId?: string | null;
valueElicitationPromptSpecification?: PromptSpecification | null;
}

§Properties

§
description?: string | null
[src]

The description of the slot.

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

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

§
slotConstraint?: SlotConstraint | null
[src]

Whether the slot is required or optional. An intent is complete when all required slots are filled.

§
slotId?: string | null
[src]

The unique identifier of the slot.

§
slotName?: string | null
[src]

The name given to the slot.

§
slotTypeId?: string | null
[src]

The unique identifier for the slot type that defines the values for the slot.

§
valueElicitationPromptSpecification?: PromptSpecification | null
[src]

Prompts that are sent to the user to elicit a value for the slot.