Module Values.VoiceSource

Description of the voice.

Sourcetype nonrec t = {
  1. gender : Gender.t option;
    (*

    Gender of the voice.

    *)
  2. id : VoiceId.t option;
    (*

    Amazon Polly assigned voice ID. This is the ID that you specify when calling the SynthesizeSpeech operation.

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

    Language code of the voice.

    *)
  4. languageName : LanguageName.t option;
    (*

    Human readable name of the language in English.

    *)
  5. name : VoiceName.t option;
    (*

    Name of the voice (for example, Salli, Kendra, etc.). This provides a human readable voice name that you might display in your application.

    *)
  6. additionalLanguageCodes : LanguageCodeList.t option;
    (*

    Additional codes for languages available for the specified voice in addition to its default language. For example, the default language for Aditi is Indian English (en-IN) because it was first used for that language. Since Aditi is bilingual and fluent in both Indian English and Hindi, this parameter would show the code hi-IN.

    *)
  7. supportedEngines : EngineList.t option;
    (*

    Specifies which engines (standard, neural, long-form or generative) are supported by a given voice.

    *)
}
Sourceval make : ?gender:??? -> ?id:??? -> ?languageCode:??? -> ?languageName:??? -> ?name:??? -> ?additionalLanguageCodes:??? -> ?supportedEngines:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of LanguageName.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