Skip to content

Instantly share code, notes, and snippets.

View wz2b's full-sized avatar

Christopher Piggott wz2b

View GitHub Profile
@wz2b
wz2b / gist:affbf097ee609e36c5ade0a2bb30c134
Created October 16, 2023 21:57
How I am creating my function
const fnSyncHistory = new nodejs.NodejsFunction(this,
"craft-sync-history-function", {
...lambdaBase.baseLayers,
runtime: lambda.Runtime.NODEJS_LATEST,
logRetention: RetentionDays.ONE_MONTH,
bundling: {
sourceMapMode: nodejs.SourceMapMode.INLINE,
minify: true
},
role: sitewiseRole,