Skip to content

Commit

Permalink
new runtime (aws#26248)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizencc authored and bmoffatt committed Jul 28, 2023
1 parent b5b623e commit fa8726a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/aws-cdk-lib/aws-lambda/lib/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,14 @@ export class Runtime {
supportsCodeGuruProfiling: true,
});

/**
* The Python 3.11 runtime (python3.11)
*/
public static readonly PYTHON_3_11 = new Runtime('python3.11', RuntimeFamily.PYTHON, {
supportsInlineCode: true,
supportsCodeGuruProfiling: true,
});

/**
* The Java 8 runtime (java8)
*/
Expand Down

0 comments on commit fa8726a

Please sign in to comment.