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.
13 lines (12 loc) • 303 B
text/typescript
import { SpyEvent } from "./SpyEvent.mjs";
//#region common/spyEvents/S3SpyEvent.d.ts
interface S3SpyEvent extends SpyEvent {
spyEventType: 'S3';
eventName: string;
eventTime: string;
bucket: string;
key: string;
}
//#endregion
export { S3SpyEvent };
//# sourceMappingURL=S3SpyEvent.d.mts.map