Module Values.BatchInferenceJobSummarySource

A truncated version of the BatchInferenceJob. The ListBatchInferenceJobs operation returns a list of batch inference job summaries.

Sourcetype nonrec t = {
  1. batchInferenceJobArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the batch inference job.

    *)
  2. jobName : Name.t option;
    (*

    The name of the batch inference job.

    *)
  3. status : Status.t option;
    (*

    The status of the batch inference job. The status is one of the following values: PENDING IN PROGRESS ACTIVE CREATE FAILED

    *)
  4. creationDateTime : Date.t option;
    (*

    The time at which the batch inference job was created.

    *)
  5. lastUpdatedDateTime : Date.t option;
    (*

    The time at which the batch inference job was last updated.

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

    If the batch inference job failed, the reason for the failure.

    *)
  7. solutionVersionArn : Arn.t option;
    (*

    The ARN of the solution version used by the batch inference job.

    *)
  8. batchInferenceJobMode : BatchInferenceJobMode.t option;
    (*

    The job's mode.

    *)
}
Sourceval make : ?batchInferenceJobArn:??? -> ?jobName:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?failureReason:??? -> ?solutionVersionArn:??? -> ?batchInferenceJobMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.t | `Timestamp of Date.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