13 lines
314 B
TypeScript
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;
|
|
}
|