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

CustomVocabularyItem

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

The unique custom vocabulary item from the custom vocabulary list.

interface CustomVocabularyItem {
displayAs?: string | null;
itemId: string;
phrase: string;
weight?: number | null;
}

§Properties

§
displayAs?: string | null
[src]

The DisplayAs value for the custom vocabulary item from the custom vocabulary list.

§
itemId: string
[src]

The unique item identifer for the custom vocabulary item from the custom vocabulary list.

§
phrase: string
[src]

The unique phrase for the custom vocabulary item from the custom vocabulary list.

§
weight?: number | null
[src]

The weight assigned for the custom vocabulary item from the custom vocabulary list.