Module Values.GetLexiconOutputSource

Returns the content of the specified pronunciation lexicon stored in an Amazon Web Services Region. For more information, see Managing Lexicons.

Sourcetype nonrec t = {
  1. lexicon : Lexicon.t option;
    (*

    Lexicon object that provides name and the string content of the lexicon.

    *)
  2. lexiconAttributes : LexiconAttributes.t option;
    (*

    Metadata of the lexicon, including phonetic alphabetic used, language code, lexicon ARN, number of lexemes defined in the lexicon, and size of lexicon in bytes.

    *)
}
Sourcetype nonrec error = [
  1. | `LexiconNotFoundException of LexiconNotFoundException.t
  2. | `ServiceFailureException of ServiceFailureException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?lexicon:??? -> ?lexiconAttributes:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `LexiconNotFoundException of LexiconNotFoundException.t | `ServiceFailureException of ServiceFailureException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `LexiconNotFoundException of LexiconNotFoundException.t | `ServiceFailureException of ServiceFailureException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of LexemesCount.t | `String of LexiconContent.t | `Timestamp of LastModified.t ]) list ]) 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