lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
28 lines (27 loc) • 740 B
TypeScript
/**
* Delete the Lambda Layer
*/
declare function deleteLayer(): Promise<void>;
/**
* Deploy the infrastructure
*/
declare function deployInfrastructure(): Promise<void>;
/**
* Get the planed infrastructure changes
*/
declare function getPlanedInfrastructureChanges(): Promise<{
deployLayer: boolean;
lambdasToUpdate: string[];
rolesToUpdate: string[];
}>;
/**
* Remove the infrastructure
*/
declare function removeInfrastructure(): Promise<void>;
export declare const InfraDeploy: {
getPlanedInfrastructureChanges: typeof getPlanedInfrastructureChanges;
deployInfrastructure: typeof deployInfrastructure;
removeInfrastructure: typeof removeInfrastructure;
deleteLayer: typeof deleteLayer;
};
export {};