APIGateway / Client / get_request_validator
get_request_validator#
- APIGateway.Client.get_request_validator(**kwargs)#
Gets a RequestValidator of a given RestApi.
See also: AWS API Documentation
Request Syntax
response = client.get_request_validator( restApiId='string', requestValidatorId='string' )
- Parameters:
restApiId (string) –
[REQUIRED]
The string identifier of the associated RestApi.
requestValidatorId (string) –
[REQUIRED]
The identifier of the RequestValidator to be retrieved.
- Return type:
dict
- Returns:
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.BadRequestException
APIGateway.Client.exceptions.NotFoundException
APIGateway.Client.exceptions.UnauthorizedException
APIGateway.Client.exceptions.TooManyRequestsException