@goldstack/utils-aws-lambda
Version:
Utilities for deploying AWS Lambda functions
12 lines • 555 B
TypeScript
import type { AWSDeployment } from '@goldstack/infra-aws';
import type { LambdaConfig } from './types/LambdaConfig';
import type { LambdaApiDeploymentConfiguration } from './types/LambdaDeploymentConfiguration';
export interface DeployFunctionsParams {
routesPath: string;
configuration: LambdaApiDeploymentConfiguration;
deployment: AWSDeployment;
config: LambdaConfig[];
packageRootFolder: string;
}
export declare const deployFunctions: (params: DeployFunctionsParams) => Promise<void>;
//# sourceMappingURL=deployFunctions.d.ts.map