Module Values_2.ProcessingJobSummarySource

Summary of information about a processing job.

Sourcetype nonrec t = {
  1. processingJobName : Values_0.ProcessingJobName.t option;
    (*

    The name of the processing job.

    *)
  2. processingJobArn : Values_1.ProcessingJobArn.t option;
    (*

    The Amazon Resource Name (ARN) of the processing job..

    *)
  3. creationTime : Values_0.Timestamp.t option;
    (*

    The time at which the processing job was created.

    *)
  4. processingEndTime : Values_0.Timestamp.t option;
    (*

    The time at which the processing job completed.

    *)
  5. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    A timestamp that indicates the last time the processing job was modified.

    *)
  6. processingJobStatus : Values_1.ProcessingJobStatus.t option;
    (*

    The status of the processing job.

    *)
  7. failureReason : Values_0.FailureReason.t option;
    (*

    A string, up to one KB in size, that contains the reason a processing job failed, if it failed.

    *)
  8. exitMessage : Values_1.ExitMessage.t option;
    (*

    An optional string, up to one KB in size, that contains metadata from the processing container when the processing job exits.

    *)
}
Sourceval make : ?processingJobName:??? -> ?processingJobArn:??? -> ?creationTime:??? -> ?processingEndTime:??? -> ?lastModifiedTime:??? -> ?processingJobStatus:??? -> ?failureReason:??? -> ?exitMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.ProcessingJobName.t | `Timestamp of Values_0.Timestamp.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