lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
9 lines (8 loc) • 333 B
TypeScript
import { ArnHostnameParams, BucketHostnameParams } from "./bucketHostnameUtils";
export interface BucketHostname {
hostname: string;
bucketEndpoint: boolean;
signingRegion?: string;
signingService?: string;
}
export declare const bucketHostname: (options: BucketHostnameParams | ArnHostnameParams) => BucketHostname;