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

LexiconAttributes

import type { LexiconAttributes } from "https://aws-api.deno.dev/v0.3/services/polly.ts?docs=full";

Contains metadata describing the lexicon such as the number of lexemes, language code, and so on. For more information, see Managing Lexicons.

interface LexiconAttributes {
Alphabet?: string | null;
LanguageCode?: LanguageCode | null;
LastModified?: Date | number | null;
LexemesCount?: number | null;
LexiconArn?: string | null;
Size?: number | null;
}

§Properties

§
Alphabet?: string | null
[src]

Phonetic alphabet used in the lexicon. Valid values are ipa and x-sampa.

§
LanguageCode?: LanguageCode | null
[src]

Language code that the lexicon applies to. A lexicon with a language code such as "en" would be applied to all English languages (en-GB, en-US, en-AUS, en-WLS, and so on.

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

Date lexicon was last modified (a timestamp value).

§
LexemesCount?: number | null
[src]

Number of lexemes in the lexicon.

§
LexiconArn?: string | null
[src]

Amazon Resource Name (ARN) of the lexicon.

§
Size?: number | null
[src]

Total size of the lexicon, in characters.