Values.RequestValidatorSourceA set of validation rules for incoming Method requests.
type nonrec t = {id : String_.t option;The identifier of this RequestValidator.
*)name : String_.t option;The name of this RequestValidator
*)validateRequestBody : Boolean.t option;A Boolean flag to indicate whether to validate a request body according to the configured Model schema.
*)validateRequestParameters : Boolean.t option;A Boolean flag to indicate whether to validate request parameters (true) or not (false).
*)}type nonrec error = [ | `BadRequestException of BadRequestException.t| `ConflictException of ConflictException.t| `LimitExceededException of LimitExceededException.t| `NotFoundException of NotFoundException.t| `TooManyRequestsException of TooManyRequestsException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `BadRequestException of BadRequestException.t
| `ConflictException of ConflictException.t
| `LimitExceededException of LimitExceededException.t
| `NotFoundException of NotFoundException.t
| `TooManyRequestsException of TooManyRequestsException.t
| `UnauthorizedException of UnauthorizedException.t
| `Unknown_operation_error of string * string option ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `BadRequestException of BadRequestException.t
| `ConflictException of ConflictException.t
| `LimitExceededException of LimitExceededException.t
| `NotFoundException of NotFoundException.t
| `TooManyRequestsException of TooManyRequestsException.t
| `UnauthorizedException of UnauthorizedException.t
| `Unknown_operation_error of string * string option ]