Files
agent-claw/cdk/node_modules/aws-cdk-lib/aws-apigateway/lib/requestvalidator.d.ts
2026-05-06 18:55:16 -05:00

59 lines
2.1 KiB
TypeScript

import type { Construct } from 'constructs';
import type { IRequestValidatorRef, RequestValidatorReference } from './apigateway.generated';
import type { IRestApi } from './restapi';
import type { IResource } from '../../core';
import { Resource } from '../../core';
export interface IRequestValidator extends IResource, IRequestValidatorRef {
/**
* ID of the request validator, such as abc123
*
* @attribute
*/
readonly requestValidatorId: string;
}
export interface RequestValidatorOptions {
/**
* The name of this request validator.
*
* @default None
*/
readonly requestValidatorName?: string;
/**
* Indicates whether to validate the request body according to
* the configured schema for the targeted API and method.
*
* @default false
*/
readonly validateRequestBody?: boolean;
/**
* Indicates whether to validate request parameters.
*
* @default false
*/
readonly validateRequestParameters?: boolean;
}
export interface RequestValidatorProps extends RequestValidatorOptions {
/**
* The rest API that this model is part of.
*
* The reason we need the RestApi object itself and not just the ID is because the model
* is being tracked by the top-level RestApi object for the purpose of calculating its
* hash to determine the ID of the deployment. This allows us to automatically update
* the deployment when the model of the REST API changes.
*/
readonly restApi: IRestApi;
}
export declare class RequestValidator extends Resource implements IRequestValidator {
/** Uniquely identifies this class. */
static readonly PROPERTY_INJECTION_ID: string;
static fromRequestValidatorId(scope: Construct, id: string, requestValidatorId: string): IRequestValidator;
/**
* ID of the request validator, such as abc123
*
* @attribute
*/
readonly requestValidatorId: string;
constructor(scope: Construct, id: string, props: RequestValidatorProps);
get requestValidatorRef(): RequestValidatorReference;
}