Module Values.GetRunTaskResponseSource

Gets detailed information about a run task using its ID.

Sourcetype nonrec t = {
  1. taskId : TaskId.t option;
    (*

    The task's ID.

    *)
  2. status : TaskStatus.t option;
    (*

    The task's status.

    *)
  3. name : TaskName.t option;
    (*

    The task's name.

    *)
  4. cpus : GetRunTaskResponseCpusInteger.t option;
    (*

    The task's CPU usage.

    *)
  5. cacheHit : Boolean.t option;
    (*

    Set to true if Amazon Web Services HealthOmics found a matching entry in the run cache for this task.

    *)
  6. cacheS3Uri : S3UriForBucketOrObject.t option;
    (*

    The S3 URI of the cache location.

    *)
  7. memory : GetRunTaskResponseMemoryInteger.t option;
    (*

    The task's memory use in gigabytes.

    *)
  8. creationTime : TaskTimestamp.t option;
    (*

    When the task was created.

    *)
  9. startTime : TaskTimestamp.t option;
    (*

    The task's start time.

    *)
  10. stopTime : TaskTimestamp.t option;
    (*

    The task's stop time.

    *)
  11. statusMessage : TaskStatusMessage.t option;
    (*

    The task's status message.

    *)
  12. logStream : TaskLogStream.t option;
    (*

    The task's log stream.

    *)
  13. gpus : GetRunTaskResponseGpusInteger.t option;
    (*

    The number of Graphics Processing Units (GPU) specified in the task.

    *)
  14. instanceType : TaskInstanceType.t option;
    (*

    The instance type for a task.

    *)
  15. failureReason : TaskFailureReason.t option;
    (*

    The reason a task has failed.

    *)
  16. imageDetails : ImageDetails.t option;
    (*

    Details about the container image that this task uses.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `RequestTimeoutException of RequestTimeoutException.t
  5. | `ResourceNotFoundException of ResourceNotFoundException.t
  6. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  7. | `ThrottlingException of ThrottlingException.t
  8. | `ValidationException of ValidationException.t
  9. | `Unknown_operation_error of string * string option
]
Sourceval make : ?taskId:??? -> ?status:??? -> ?name:??? -> ?cpus:??? -> ?cacheHit:??? -> ?cacheS3Uri:??? -> ?memory:??? -> ?creationTime:??? -> ?startTime:??? -> ?stopTime:??? -> ?statusMessage:??? -> ?logStream:??? -> ?gpus:??? -> ?instanceType:??? -> ?failureReason:??? -> ?imageDetails:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `RequestTimeoutException of RequestTimeoutException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `RequestTimeoutException of RequestTimeoutException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of GetRunTaskResponseCpusInteger.t | `String of TaskId.t | `Structure of (string * [> `String of Uri_.t ]) list | `Timestamp of TaskTimestamp.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