Module Values.ValidationExceptionSource

The request failed validation. One or more input parameters are invalid, missing, or do not meet the required format or constraints.

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

    The reason for the validation failure.

    *)
  3. errorDetails : ValidationErrorList.t option;
    (*

    A list of detailed validation errors that occurred during request processing.

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