t3wad
12/01/2022, 3:55 PMAndrew O'Hara
12/01/2022, 5:53 PMdave
12/01/2022, 9:00 PMmemory x timedave
12/01/2022, 9:02 PMandyg
12/03/2022, 8:54 AMdave
12/03/2022, 8:59 AMdave
12/03/2022, 9:01 AMdave
12/03/2022, 9:10 AMapp.asServer(AwsLambdaRuntime())dave
12/03/2022, 9:18 AMandyg
12/04/2022, 2:23 AMdave
12/05/2022, 4:48 PMYour custom runtime runs in the standard Lambda execution environment. It can be a shell script, a script in a language that's included in Amazon Linux, or a binary executable file that's compiled in Amazon Linux.dave
12/05/2022, 4:49 PMconst lambdaFunction = new aws.lambda.Function("hello-http4k", {
    code: new pulumi.asset.FileArchive("HelloHttp4k.zip"),
    handler: "unused",
    role: defaultRole.arn,
    runtime: "provided.al2"
});dave
12/05/2022, 4:51 PM