Module Values.ValidationExceptionSource

One or more parameters provided in the request is not valid.

Sourcetype nonrec t = {
  1. fieldList : ValidationExceptionFieldList.t option;
    (*

    The list of fields that failed service validation.

    *)
  2. message : String_.t option;
  3. reason : ValidationExceptionReason.t option;
    (*

    The reason why it failed service validation.

    *)
}
Sourceval make : ?fieldList:??? -> ?message:??? -> ?reason:??? -> 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