We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9c65dc commit b723387Copy full SHA for b723387
supplemental-docs/AWS_LAMBDA.md
@@ -75,6 +75,8 @@ await lambda.publishLayerVersion({
75
// read the layer zip file as a buffer.
76
ZipFile: fs.readFileSync("./path/to/layer_content.zip"),
77
},
78
+ // Confirm from SDK package.json engines field that version supports each runtime.
79
+ // It usually does, if Lambda hasn't blocked function create for the runtime.
80
CompatibleRuntimes: ["nodejs18.x", "nodejs20.x", "nodejs22.x"],
81
CompatibleArchitectures: ["x86_64", "arm64"],
82
});
0 commit comments