Module Values.BatchDeleteEvaluationJobErrorSource

A JSON array that provides the status of the evaluation jobs being deleted.

Sourcetype nonrec t = {
  1. jobIdentifier : EvaluationJobIdentifier.t option;
    (*

    The ARN of the evaluation job being deleted.

    *)
  2. code : String_.t option;
    (*

    A HTTP status code of the evaluation job being deleted.

    *)
  3. message : String_.t option;
    (*

    A status message about the evaluation job deletion.

    *)
}
Sourceval make : ?jobIdentifier:??? -> ?code:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EvaluationJobIdentifier.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