serverless-global-authorizer
Version:
Serverless framework plugin which allows to configure API Gateway authorizer globally and applies it for all http/httpApi lambda function events
12 lines • 513 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ServerlessGlobalAuthorizerError = void 0;
class ServerlessGlobalAuthorizerError extends Error {
constructor(message) {
super(`[serverless-global-authorizer] ${message}`);
this.name = this.constructor.name;
Error.captureStackTrace(this, this.constructor);
}
}
exports.ServerlessGlobalAuthorizerError = ServerlessGlobalAuthorizerError;
//# sourceMappingURL=serverless-global-authorizer-error.js.map