Module Values.ValidationExceptionSource

The request has failed validation because it is missing required fields or has invalid inputs.

Sourcetype nonrec t = {
  1. message : String_.t option;
  2. reason : ValidationExceptionReason.t option;
    (*

    The reason why the validation failed.

    *)
  3. fieldList : ValidationExceptionFieldList.t option;
    (*

    A list of fields that failed validation.

    *)
}
Sourceval make : ?message:??? -> ?reason:??? -> ?fieldList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.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