Values.ComprehendMedicalAsyncJobPropertiesSourceProvides information about a detection job.
type nonrec t = {jobId : JobId.t option;The identifier assigned to the detection job.
*)jobName : JobName.t option;The name that you assigned to the detection job.
*)jobStatus : JobStatus.t option;The current status of the detection job. If the status is FAILED, the Message field shows the reason for the failure.
*)message : AnyLengthString.t option;A description of the status of a job.
*)submitTime : Timestamp.t option;The time that the detection job was submitted for processing.
*)endTime : Timestamp.t option;The time that the detection job completed.
*)expirationTime : Timestamp.t option;The date and time that job metadata is deleted from the server. Output files in your S3 bucket will not be deleted. After the metadata is deleted, the job will no longer appear in the results of the ListEntitiesDetectionV2Job or the ListPHIDetectionJobs operation.
*)inputDataConfig : InputDataConfig.t option;The input data configuration that you supplied when you created the detection job.
*)outputDataConfig : OutputDataConfig.t option;The output data configuration that you supplied when you created the detection job.
*)languageCode : LanguageCode.t option;The language code of the input documents.
*)dataAccessRoleArn : IamRoleArn.t option;The Amazon Resource Name (ARN) that gives Amazon Comprehend Medical read access to your input data.
*)manifestFilePath : ManifestFilePath.t option;The path to the file that describes the results of a batch job.
*)kMSKey : KMSKey.t option;The AWS Key Management Service key, if any, used to encrypt the output files.
*)modelVersion : ModelVersion.t option;The version of the model used to analyze the documents. The version number looks like X.X.X. You can use this information to track the model used for a particular batch of documents.
*)}val make :
?jobId:??? ->
?jobName:??? ->
?jobStatus:??? ->
?message:??? ->
?submitTime:??? ->
?endTime:??? ->
?expirationTime:??? ->
?inputDataConfig:??? ->
?outputDataConfig:??? ->
?languageCode:??? ->
?dataAccessRoleArn:??? ->
?manifestFilePath:??? ->
?kMSKey:??? ->
?modelVersion:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of JobId.t
| `Structure of (string * [> `String of S3Bucket.t ]) list
| `Timestamp of Timestamp.t ])
list ]