Skip to content

Commit

Permalink
fix(apprunner-alpha): add runtimes PYTHON_311 and NODEJS_18
Browse files Browse the repository at this point in the history
  • Loading branch information
mellevanderlinde committed May 10, 2024
1 parent 3e9e0a8 commit 9259ebd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/@aws-cdk/aws-apprunner-alpha/lib/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,11 @@ export class Runtime {
*/
public static readonly NODEJS_16 = Runtime.of('NODEJS_16')

/**
* NodeJS 18
*/
public static readonly NODEJS_18 = Runtime.of('NODEJS_18')

/**
* PHP 8.1
*/
Expand All @@ -209,6 +214,11 @@ export class Runtime {
*/
public static readonly PYTHON_3 = Runtime.of('PYTHON_3')

/**
* Python 3.11
*/
public static readonly PYTHON_311 = Runtime.of('PYTHON_311')

/**
* Ruby 3.1
*/
Expand Down

0 comments on commit 9259ebd

Please sign in to comment.