Skip to content

Commit

Permalink
chore(apprunner-alpha): add runtimes PYTHON_311 and NODEJS_18 (#30149)
Browse files Browse the repository at this point in the history
### 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*
  • Loading branch information
mellevanderlinde authored Jul 31, 2024
1 parent d367267 commit ad3a25d
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 @@ -202,6 +202,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 @@ -212,6 +217,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 ad3a25d

Please sign in to comment.