We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0855454 commit 27edda7Copy full SHA for 27edda7
1 file changed
lambda-s3-athena-cdk-ts/lib/pattern-stack.ts
@@ -29,7 +29,7 @@ export class PatternStack extends cdk.Stack {
29
// Note: S3Destination automatically grants only necessary write permissions (PutObject)
30
// to the Lambda function for failed event delivery
31
const processorFunction = new lambda.Function(this, 'ProcessorFunction', {
32
- runtime: lambda.Runtime.NODEJS_20_X,
+ runtime: lambda.Runtime.NODEJS_LATEST,
33
handler: 'processor.handler',
34
code: lambda.Code.fromAsset(path.join(__dirname, '../lambda')),
35
timeout: cdk.Duration.seconds(30),
0 commit comments