Module Values.ValidationExceptionSource

The input parameters for the request are invalid.

Sourcetype nonrec t = {
  1. message : NonBlankString.t option;
    (*

    The input fails to satisfy the constraints specified by the service.

    *)
  2. reason : ValidationExceptionReason.t option;
    (*

    The reason for the validation failure.

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

    The 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 NonBlankString.t ]) list ] list | `String of NonBlankString.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