APIGateway.Client.create_request_validator(**kwargs)¶Creates a RequestValidator of a given RestApi.
See also: AWS API Documentation
Request Syntax
response = client.create_request_validator(
restApiId='string',
name='string',
validateRequestBody=True|False,
validateRequestParameters=True|False
)
[REQUIRED]
The string identifier of the associated RestApi.
true ) or not ( false ).true , or not false .dict
Response Syntax
{
'id': 'string',
'name': 'string',
'validateRequestBody': True|False,
'validateRequestParameters': True|False
}
Response Structure
(dict) --
A set of validation rules for incoming Method requests.
id (string) --
The identifier of this RequestValidator.
name (string) --
The name of this RequestValidator
validateRequestBody (boolean) --
A Boolean flag to indicate whether to validate a request body according to the configured Model schema.
validateRequestParameters (boolean) --
A Boolean flag to indicate whether to validate request parameters ( true ) or not ( false ).
Exceptions
APIGateway.Client.exceptions.BadRequestExceptionAPIGateway.Client.exceptions.ConflictExceptionAPIGateway.Client.exceptions.LimitExceededExceptionAPIGateway.Client.exceptions.NotFoundExceptionAPIGateway.Client.exceptions.UnauthorizedExceptionAPIGateway.Client.exceptions.TooManyRequestsException