Module Values.MedicalScribeJobSummarySource

Provides detailed information about a specific Medical Scribe job.

Sourcetype nonrec t = {
  1. medicalScribeJobName : TranscriptionJobName.t option;
    (*

    The name of the Medical Scribe job. Job names are case sensitive and must be unique within an Amazon Web Services account.

    *)
  2. creationTime : DateTime.t option;
    (*

    The date and time the specified Medical Scribe job request was made. Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents a Medical Scribe job that started processing at 12:32 PM UTC-7 on May 4, 2022.

    *)
  3. startTime : DateTime.t option;
    (*

    The date and time your Medical Scribe job began processing. Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.789000-07:00 represents a Medical Scribe job that started processing at 12:32 PM UTC-7 on May 4, 2022.

    *)
  4. completionTime : DateTime.t option;
    (*

    The date and time the specified Medical Scribe job finished processing. Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents a Medical Scribe job that finished processing at 12:32 PM UTC-7 on May 4, 2022.

    *)
  5. languageCode : MedicalScribeLanguageCode.t option;
    (*

    The language code used to create your Medical Scribe job. US English (en-US) is the only supported language for Medical Scribe jobs.

    *)
  6. medicalScribeJobStatus : MedicalScribeJobStatus.t option;
    (*

    Provides the status of the specified Medical Scribe job. If the status is COMPLETED, the job is finished and you can find the results at the location specified in MedicalScribeOutput If the status is FAILED, FailureReason provides details on why your Medical Scribe job failed.

    *)
  7. failureReason : FailureReason.t option;
    (*

    If MedicalScribeJobStatus is FAILED, FailureReason contains information about why the transcription job failed. See also: Common Errors.

    *)
}
Sourceval make : ?medicalScribeJobName:??? -> ?creationTime:??? -> ?startTime:??? -> ?completionTime:??? -> ?languageCode:??? -> ?medicalScribeJobStatus:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TranscriptionJobName.t | `Timestamp of DateTime.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