request_validator
Gets an individual request_validator
resource
Overview
Name | request_validator |
Type | Resource |
Description | request_validator |
Id | awscc.apigateway.request_validator |
Fields
Name | Datatype | Description |
---|---|---|
request_validator_id | string | |
name | string | The name of this RequestValidator |
rest_api_id | string | The string identifier of the associated RestApi. |
validate_request_body | boolean | A Boolean flag to indicate whether to validate a request body according to the configured Model schema. |
validate_request_parameters | boolean | A Boolean flag to indicate whether to validate request parameters (``true``) or not (``false``). |
region | string | AWS region. |
Methods
Currently only SELECT
is supported for this resource resource.
Example
SELECT
region,
request_validator_id,
name,
rest_api_id,
validate_request_body,
validate_request_parameters
FROM awscc.apigateway.request_validator
WHERE data__Identifier = '<RestApiId>|<RequestValidatorId>';
Permissions
To operate on the request_validator
resource, the following permissions are required:
Update
apigateway:PATCH,
apigateway:GET
Delete
apigateway:DELETE
Read
apigateway:GET