Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateRequestValidatorRequest

import type { CreateRequestValidatorRequest } from "https://aws-api.deno.dev/v0.3/services/apigateway.ts?docs=full";

Creates a "RequestValidator" of a given "RestApi".

interface CreateRequestValidatorRequest {
name?: string | null;
restApiId: string;
validateRequestBody?: boolean | null;
validateRequestParameters?: boolean | null;
}

§Properties

§
name?: string | null
[src]

The name of the to-be-created "RequestValidator".

§
restApiId: string
[src]

[Required] The string identifier of the associated "RestApi".

§
validateRequestBody?: boolean | null
[src]

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

§
validateRequestParameters?: boolean | null
[src]

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