Module Values.PutJobFailureResultInputSource

Represents the input of a PutJobFailureResult action.

Sourcetype nonrec t = {
  1. jobId : JobId.t;
    (*

    The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.

    *)
  2. failureDetails : FailureDetails.t;
    (*

    The details about the failure of a job.

    *)
}
Sourceval context_ : string
Sourceval make : jobId:JobId.t -> failureDetails:FailureDetails.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of JobId.t | `Structure of (string * [> `Enum of string | `String of Message.t ]) list ]) 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