Module Values.FailureInfoSource

An object that contains the failure details about a job.

Sourcetype nonrec t = {
  1. failedRecordsS3Url : FailedRecordsS3Url.t option;
    (*

    An Amazon S3 pre-signed URL that contains all the failed records and related information.

    *)
  2. errorMessage : ErrorMessage.t option;
    (*

    A message about why the job failed.

    *)
}
Sourceval make : ?failedRecordsS3Url:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FailedRecordsS3Url.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