UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

13 lines (12 loc) 314 B
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; }