This library provides a simple wrapper around the AWS CLI to deploy Lambdas and define Lambda infrastructure.
This function will deploy an AWS lambda. Note this function will either need Docker to be available locally or the AWS cli.
interface DeployFunctionParams {
lambdaPackageDir: string;
targetArchiveName?: string;
awsCredentials: AWSCredentialIdentity;
region: string;
functionName: string;
}
function async deployFunction(
params: DeployFunctionParams
): Promise<any> {}
This function will generate a configuration for AWS HTTP API Gateway based on .ts
files in a folder. For more information, see Goldstack Documentation - Defining Routes
export interface LambdaConfig {
name: string;
type: RouteType;
absoluteFilePath: string;
relativeFilePath: string;
path: string;
route: string;
}
function readLambdaConfig(dir: string): LambdaConfig[] {}