Skip to content

Commit ad3a25d

Browse files
chore(apprunner-alpha): add runtimes PYTHON_311 and NODEJS_18 (#30149)
### Issue # (if applicable) Closes #30146. ### Reason for this change Runtimes Python 3.11 and NodeJS 18 were missing. ### Description of changes Runtimes Python 3.11 and NodeJS 18 were added. ### Description of how you validated changes No tests were added, as it seems not required for this type of change. ### Checklist - [*] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent d367267 commit ad3a25d

File tree

1 file changed

+10
-0
lines changed
  • packages/@aws-cdk/aws-apprunner-alpha/lib

1 file changed

+10
-0
lines changed

packages/@aws-cdk/aws-apprunner-alpha/lib/service.ts

+10
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,11 @@ export class Runtime {
202202
*/
203203
public static readonly NODEJS_16 = Runtime.of('NODEJS_16')
204204

205+
/**
206+
* NodeJS 18
207+
*/
208+
public static readonly NODEJS_18 = Runtime.of('NODEJS_18')
209+
205210
/**
206211
* PHP 8.1
207212
*/
@@ -212,6 +217,11 @@ export class Runtime {
212217
*/
213218
public static readonly PYTHON_3 = Runtime.of('PYTHON_3')
214219

220+
/**
221+
* Python 3.11
222+
*/
223+
public static readonly PYTHON_311 = Runtime.of('PYTHON_311')
224+
215225
/**
216226
* Ruby 3.1
217227
*/

0 commit comments

Comments
 (0)