/** *

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

*/ export interface _LexiconAttributes { /** *

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

*/ Alphabet?: string; /** *

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.

*/ LanguageCode?: "arb" | "cmn-CN" | "cy-GB" | "da-DK" | "de-DE" | "en-AU" | "en-GB" | "en-GB-WLS" | "en-IN" | "en-US" | "es-ES" | "es-MX" | "es-US" | "fr-CA" | "fr-FR" | "is-IS" | "it-IT" | "ja-JP" | "hi-IN" | "ko-KR" | "nb-NO" | "nl-NL" | "pl-PL" | "pt-BR" | "pt-PT" | "ro-RO" | "ru-RU" | "sv-SE" | "tr-TR" | string; /** *

Date lexicon was last modified (a timestamp value).

*/ LastModified?: Date | string | number; /** *

Amazon Resource Name (ARN) of the lexicon.

*/ LexiconArn?: string; /** *

Number of lexemes in the lexicon.

*/ LexemesCount?: number; /** *

Total size of the lexicon, in characters.

*/ Size?: number; } export interface _UnmarshalledLexiconAttributes extends _LexiconAttributes { /** *

Date lexicon was last modified (a timestamp value).

*/ LastModified?: Date; }