This message was deleted.
# general
s
This message was deleted.
b
hmm can we just use the string representation instead? seems like it.. will try and report back
Copy code
Python3d10: "python3.10",
yea.. that worked 🤦
Copy code
var lambda_function = new aws.lambda.Function(
    name,
    {
        name: name,
        runtime: "python3.10",      <--- removed path to ENUM, just used string equivalent
        code: new pulumi.asset.AssetArchive({
            ".": new pulumi.asset.FileArchive(`./${CODE_PATH}/${CODE_PATH}.zip`),
        }),
        timeout: 30,
        memorySize: 128,
        handler: `function.handler`,
........