/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type definition for AWS::ApiGateway::RequestValidator */ export interface AwsApigatewayRequestvalidator { /** * ID of the request validator. */ RequestValidatorId?: string; /** * Name of the request validator. */ Name?: string; /** * The identifier of the targeted API entity. */ RestApiId: string; /** * Indicates whether to validate the request body according to the configured schema for the targeted API and method. */ ValidateRequestBody?: boolean; /** * Indicates whether to validate request parameters. */ ValidateRequestParameters?: boolean; }