Module Values.GetSpeechSynthesisTaskOutputSource

Retrieves a specific SpeechSynthesisTask object based on its TaskID. This object contains information about the given speech synthesis task, including the status of the task, and a link to the S3 bucket containing the output of the task.

Sourcetype nonrec t = {
  1. synthesisTask : SynthesisTask.t option;
    (*

    SynthesisTask object that provides information from the requested task, including output format, creation time, task status, and so on.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidTaskIdException of InvalidTaskIdException.t
  2. | `ServiceFailureException of ServiceFailureException.t
  3. | `SynthesisTaskNotFoundException of SynthesisTaskNotFoundException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?synthesisTask:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidTaskIdException of InvalidTaskIdException.t | `ServiceFailureException of ServiceFailureException.t | `SynthesisTaskNotFoundException of SynthesisTaskNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidTaskIdException of InvalidTaskIdException.t | `ServiceFailureException of ServiceFailureException.t | `SynthesisTaskNotFoundException of SynthesisTaskNotFoundException.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 RequestCharacters.t | `List of [> `Enum of string | `String of LexiconName.t ] list | `String of TaskId.t | `Timestamp of DateTime.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