lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
9 lines (8 loc) • 571 B
JavaScript
import { parseOutpostArnablesMiddleaware, parseOutpostArnablesMiddleawareOptions } from "./parse-outpost-arnables";
import { updateArnablesRequestMiddleware, updateArnablesRequestMiddlewareOptions } from "./update-arnables-request";
export const getProcessArnablesPlugin = (options) => ({
applyToStack: (clientStack) => {
clientStack.addRelativeTo(parseOutpostArnablesMiddleaware(options), parseOutpostArnablesMiddleawareOptions);
clientStack.addRelativeTo(updateArnablesRequestMiddleware(options), updateArnablesRequestMiddlewareOptions);
},
});