Module Values.MedicalScribeOutputSource

The location of the output of your Medical Scribe job. ClinicalDocumentUri holds the Amazon S3 URI for the Clinical Document and TranscriptFileUri holds the Amazon S3 URI for the Transcript.

Sourcetype nonrec t = {
  1. transcriptFileUri : Uri_.t option;
    (*

    Holds the Amazon S3 URI for the Transcript.

    *)
  2. clinicalDocumentUri : Uri_.t option;
    (*

    Holds the Amazon S3 URI for the Clinical Document.

    *)
}
Sourceval make : ?transcriptFileUri:??? -> ?clinicalDocumentUri:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Uri_.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