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

13 lines
314 B
TypeScript

import type { IResource } from '../../../core';
import type { IAuthorizerRef } from '../apigatewayv2.generated';
/**
* Represents an Authorizer.
*/
export interface IAuthorizer extends IResource, IAuthorizerRef {
/**
* Id of the Authorizer
* @attribute
*/
readonly authorizerId: string;
}