We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b2a1b2 commit ffa85b2Copy full SHA for ffa85b2
1 file changed
example/lib/example-stack.ts
@@ -17,5 +17,11 @@ export class ExampleStack extends cdk.Stack {
17
sourceDirectory: path.join(__dirname, '../app'),
18
handler: 'main.handler',
19
});
20
+
21
+ new lambdaRuby.RubyFunction(this, 'RubyFunction3_2', {
22
+ runtime: lambda.Runtime.RUBY_3_2,
23
+ sourceDirectory: path.join(__dirname, '../app'),
24
+ handler: 'main.handler',
25
+ });
26
}
27
0 commit comments