Values_0.CompilationJobSummarySourceA summary of a model compilation job.
type nonrec t = {compilationJobName : EntityName.t option;The name of the model compilation job that you want a summary for.
*)compilationJobArn : CompilationJobArn.t option;The Amazon Resource Name (ARN) of the model compilation job.
*)creationTime : CreationTime.t option;The time when the model compilation job was created.
*)compilationStartTime : Timestamp.t option;The time when the model compilation job started.
*)compilationEndTime : Timestamp.t option;The time when the model compilation job completed.
*)compilationTargetDevice : TargetDevice.t option;The type of device that the model will run on after the compilation job has completed.
*)compilationTargetPlatformOs : TargetPlatformOs.t option;The type of OS that the model will run on after the compilation job has completed.
*)compilationTargetPlatformArch : TargetPlatformArch.t option;The type of architecture that the model will run on after the compilation job has completed.
*)compilationTargetPlatformAccelerator : TargetPlatformAccelerator.t option;The type of accelerator that the model will run on after the compilation job has completed.
*)lastModifiedTime : LastModifiedTime.t option;The time when the model compilation job was last modified.
*)compilationJobStatus : CompilationJobStatus.t option;The status of the model compilation job.
*)}val make :
?compilationJobName:??? ->
?compilationJobArn:??? ->
?creationTime:??? ->
?compilationStartTime:??? ->
?compilationEndTime:??? ->
?compilationTargetDevice:??? ->
?compilationTargetPlatformOs:??? ->
?compilationTargetPlatformArch:??? ->
?compilationTargetPlatformAccelerator:??? ->
?lastModifiedTime:??? ->
?compilationJobStatus:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of EntityName.t
| `Timestamp of CreationTime.t ])
list ]