simple-lambda-client
Version:
A simple, convenient way to invoke aws lambda functions with best practices.
10 lines (9 loc) • 328 B
TypeScript
/**
* defines the uri-safe cache key used by simple-lambda-client requests with-simple-caching
*/
export declare const getSimpleLambdaClientCacheKey: ({ service: serviceName, function: functionName, stage, event, }: {
service: string;
function: string;
stage: string;
event: Record<string, any>;
}) => string;