UNPKG

@aws-sdk/client-cognito-identity-provider

Version:

AWS SDK for JavaScript Cognito Identity Provider Client for Node.js, Browser and React Native

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;