simple-lambda-client
Version:
A simple, convenient way to invoke aws lambda functions with best practices.
13 lines • 1.26 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.withoutSet = exports.getSimpleLambdaClientCacheKey = exports.invokeLambdaFunction = exports.LambdaInvocationError = exports.UnsuccessfulStatusCodeError = void 0;
var errors_1 = require("./errors");
Object.defineProperty(exports, "UnsuccessfulStatusCodeError", { enumerable: true, get: function () { return errors_1.UnsuccessfulStatusCodeError; } });
Object.defineProperty(exports, "LambdaInvocationError", { enumerable: true, get: function () { return errors_1.LambdaInvocationError; } });
var invokeLambdaFunction_1 = require("./invokeLambdaFunction");
Object.defineProperty(exports, "invokeLambdaFunction", { enumerable: true, get: function () { return invokeLambdaFunction_1.invokeLambdaFunction; } });
var getSimpleLambdaClientCacheKey_1 = require("./cache/getSimpleLambdaClientCacheKey");
Object.defineProperty(exports, "getSimpleLambdaClientCacheKey", { enumerable: true, get: function () { return getSimpleLambdaClientCacheKey_1.getSimpleLambdaClientCacheKey; } });
var withoutSet_1 = require("./cache/withoutSet");
Object.defineProperty(exports, "withoutSet", { enumerable: true, get: function () { return withoutSet_1.withoutSet; } });
//# sourceMappingURL=index.js.map