Module Values.ValidationErrorSource

Defines a validation error. Validation errors prevent pipeline activation. The set of validation errors that can be returned are defined by AWS Data Pipeline.

Sourcetype nonrec t = {
  1. id : Id.t option;
    (*

    The identifier of the object that contains the validation error.

    *)
  2. errors : ValidationMessages.t option;
    (*

    A description of the validation error.

    *)
}
Sourceval make : ?id:??? -> ?errors:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ValidationMessage.t ] list | `String of Id.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