Module Values.LexiconAttributesSource

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

Sourcetype nonrec t = {
  1. alphabet : Alphabet.t option;
    (*

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

    *)
  2. languageCode : LanguageCode.t option;
    (*

    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.

    *)
  3. lastModified : LastModified.t option;
    (*

    Date lexicon was last modified (a timestamp value).

    *)
  4. lexiconArn : LexiconArn.t option;
    (*

    Amazon Resource Name (ARN) of the lexicon.

    *)
  5. lexemesCount : LexemesCount.t option;
    (*

    Number of lexemes in the lexicon.

    *)
  6. size : Size.t option;
    (*

    Total size of the lexicon, in characters.

    *)
}
Sourceval make : ?alphabet:??? -> ?languageCode:??? -> ?lastModified:??? -> ?lexiconArn:??? -> ?lexemesCount:??? -> ?size:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of LexemesCount.t | `String of Alphabet.t | `Timestamp of LastModified.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t