UNPKG

function-stencil

Version:

A quickstart AWS Lambda function code generator. Downloads a template function code file, test harness file, sample SAM deffiniation and appropriate file structure.

12 lines (10 loc) 312 B
import { aws_lambda as lambda, Duration, } from "aws-cdk-lib"; const myFunction = new lambda.Function(this, "MyFunction", { runtime: lambda.Runtime.PYTHON_3_9, timeout: Duration.seconds(3), code: lambda.Code.fromAsset("projectName/function"), handler: "app.lambdaHandler", });