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) 412 B
import { HttpRequest } from "@smithy/types"; export interface TestCase { name: string; request: HttpRequest; authorization: string; } export declare const region = "us-east-1"; export declare const service = "service"; export declare const credentials: { accessKeyId: string; secretAccessKey: string; }; export declare const signingDate: Date; export declare const requests: Array<TestCase>;