Module Values.VoiceSettingsSource

Defines settings for using an Amazon Polly voice to communicate with a user. Valid values include: standard neural long-form generative

Sourcetype nonrec t = {
  1. engine : VoiceEngine.t option;
    (*

    Indicates the type of Amazon Polly voice that Amazon Lex should use for voice interaction with the user. For more information, see the engine parameter of the SynthesizeSpeech operation in the Amazon Polly developer guide. If you do not specify a value, the default is standard.

    *)
  2. voiceId : VoiceId.t;
    (*

    The identifier of the Amazon Polly voice to use.

    *)
}
Sourceval context_ : string
Sourceval make : ?engine:??? -> voiceId:VoiceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of VoiceId.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