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.
10 lines (9 loc) • 320 B
TypeScript
import { AwsCredentialIdentity, Provider } from "@smithy/types";
/**
* Generate key to index the endpoints in the cache
*/
export declare const getCacheKey: (commandName: string, config: {
credentials: Provider<AwsCredentialIdentity>;
}, options: {
identifiers?: Record<string, string>;
}) => Promise<string>;