UNPKG

serverless-offline-edge-lambda

Version:

A plugin for the Serverless Framework that simulates the behavior of AWS CloudFront Edge Lambdas while developing offline.

8 lines (7 loc) 252 B
export type EventType = 'origin-request' | 'origin-response' | 'viewer-request' | 'viewer-response'; export interface CloudFrontConfig { distributionDomainName: string; distributionId: string; eventType: EventType; requestId: string; }