Module Values_0.CompilationJobSummarySource

A summary of a model compilation job.

Sourcetype nonrec t = {
  1. compilationJobName : EntityName.t option;
    (*

    The name of the model compilation job that you want a summary for.

    *)
  2. compilationJobArn : CompilationJobArn.t option;
    (*

    The Amazon Resource Name (ARN) of the model compilation job.

    *)
  3. creationTime : CreationTime.t option;
    (*

    The time when the model compilation job was created.

    *)
  4. compilationStartTime : Timestamp.t option;
    (*

    The time when the model compilation job started.

    *)
  5. compilationEndTime : Timestamp.t option;
    (*

    The time when the model compilation job completed.

    *)
  6. compilationTargetDevice : TargetDevice.t option;
    (*

    The type of device that the model will run on after the compilation job has completed.

    *)
  7. compilationTargetPlatformOs : TargetPlatformOs.t option;
    (*

    The type of OS that the model will run on after the compilation job has completed.

    *)
  8. compilationTargetPlatformArch : TargetPlatformArch.t option;
    (*

    The type of architecture that the model will run on after the compilation job has completed.

    *)
  9. compilationTargetPlatformAccelerator : TargetPlatformAccelerator.t option;
    (*

    The type of accelerator that the model will run on after the compilation job has completed.

    *)
  10. lastModifiedTime : LastModifiedTime.t option;
    (*

    The time when the model compilation job was last modified.

    *)
  11. compilationJobStatus : CompilationJobStatus.t option;
    (*

    The status of the model compilation job.

    *)
}
Sourceval make : ?compilationJobName:??? -> ?compilationJobArn:??? -> ?creationTime:??? -> ?compilationStartTime:??? -> ?compilationEndTime:??? -> ?compilationTargetDevice:??? -> ?compilationTargetPlatformOs:??? -> ?compilationTargetPlatformArch:??? -> ?compilationTargetPlatformAccelerator:??? -> ?lastModifiedTime:??? -> ?compilationJobStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EntityName.t | `Timestamp of CreationTime.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