:doc:`APIGateway <../../apigateway>` / Client / create_request_validator

************************
create_request_validator
************************



.. py:method:: APIGateway.Client.create_request_validator(**kwargs)

  

  Creates a RequestValidator of a given RestApi.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/apigateway-2015-07-09/CreateRequestValidator>`_  


  **Request Syntax**
  ::

    response = client.create_request_validator(
        restApiId='string',
        name='string',
        validateRequestBody=True|False,
        validateRequestParameters=True|False
    )
    
  :type restApiId: string
  :param restApiId: **[REQUIRED]** 

    The string identifier of the associated RestApi.

    

  
  :type name: string
  :param name: 

    The name of the to-be-created RequestValidator.

    

  
  :type validateRequestBody: boolean
  :param validateRequestBody: 

    A Boolean flag to indicate whether to validate request body according to the configured model schema for the method ( ``true``) or not ( ``false``).

    

  
  :type validateRequestParameters: boolean
  :param validateRequestParameters: 

    A Boolean flag to indicate whether to validate request parameters, ``true``, or not ``false``.

    

  
  
  :rtype: 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**
  
  *   :py:class:`APIGateway.Client.exceptions.BadRequestException`

  
  *   :py:class:`APIGateway.Client.exceptions.ConflictException`

  
  *   :py:class:`APIGateway.Client.exceptions.LimitExceededException`

  
  *   :py:class:`APIGateway.Client.exceptions.NotFoundException`

  
  *   :py:class:`APIGateway.Client.exceptions.UnauthorizedException`

  
  *   :py:class:`APIGateway.Client.exceptions.TooManyRequestsException`

  