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

SlotTypeSummary

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

Provides summary information about a slot type.

interface SlotTypeSummary {
description?: string | null;
lastUpdatedDateTime?: Date | number | null;
parentSlotTypeSignature?: string | null;
slotTypeCategory?: SlotTypeCategory | null;
slotTypeId?: string | null;
slotTypeName?: string | null;
}

§Properties

§
description?: string | null
[src]

The description of the slot type.

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

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

§
parentSlotTypeSignature?: string | null
[src]

If the slot type is derived from a built-on slot type, the name of the parent slot type.

§
slotTypeCategory?: SlotTypeCategory | null
[src]

Indicates the type of the slot type.

  • Custom - A slot type that you created using custom values. For more information, see Creating custom slot types.
  • Extended - A slot type created by extending the AMAZON.AlphaNumeric built-in slot type. For more information, see AMAZON.AlphaNumeric.
  • ExternalGrammar - A slot type using a custom GRXML grammar to define values. For more information, see Using a custom grammar slot type.
§
slotTypeId?: string | null
[src]

The unique identifier assigned to the slot type.

§
slotTypeName?: string | null
[src]

The name of the slot type.