UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

15 lines (14 loc) 595 B
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ size: 50, params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"], }); export const defaultEndpointResolver = (endpointParams, context = {}) => { return cache.get(endpointParams, () => resolveEndpoint(ruleSet, { endpointParams: endpointParams, logger: context.logger, })); }; customEndpointFunctions.aws = awsEndpointFunctions;