Files
2026-05-06 18:55:16 -05:00

8 lines
370 B
TypeScript

import type { WebSocketRouteAuthorizerBindOptions, WebSocketRouteAuthorizerConfig, IWebSocketRouteAuthorizer } from '../../../aws-apigatewayv2';
/**
* Authorize WebSocket API Routes with IAM
*/
export declare class WebSocketIamAuthorizer implements IWebSocketRouteAuthorizer {
bind(_options: WebSocketRouteAuthorizerBindOptions): WebSocketRouteAuthorizerConfig;
}