aws_lambda_function_runtimes
21 rows
This data as json, CSV (advanced)
Suggested facets: deprecation, deprecation (date), end_of_life (date)
Link | rowid ▼ | runtime | deprecation | end_of_life |
---|---|---|---|---|
1 | 1 | dotnetcore2.1 | 2022-01-05T00:00:00Z | 2022-04-13T00:00:00Z |
2 | 2 | java8 | 2023-12-31T00:00:00Z | |
3 | 3 | go1.x | 2023-12-31T00:00:00Z | |
4 | 4 | provided | 2023-12-31T00:00:00Z | |
5 | 5 | nodejs12.x | 2023-03-31T00:00:00Z | 2023-04-30T00:00:00Z |
6 | 6 | dotnetcore3.1 | 2023-03-31T00:00:00Z | 2023-05-03T00:00:00Z |
7 | 7 | nodejs4.3 | 2020-03-05T00:00:00Z | |
8 | 8 | nodejs6.10 | 2019-08-12T00:00:00Z | |
9 | 9 | dotnetcore2.0 | 2019-05-30T00:00:00Z | |
10 | 10 | nodejs16.x | 2023-10-10T00:00:00Z | |
11 | 11 | python3.6 | 2022-07-18T00:00:00Z | 2022-08-29T00:00:00Z |
12 | 12 | nodejs10.x | 2021-07-30T00:00:00Z | 2022-02-14T00:00:00Z |
13 | 13 | nodejs | 2016-10-31T00:00:00Z | |
14 | 14 | nodejs14.x | 2023-10-10T00:00:00Z | |
15 | 15 | ruby2.7 | 2023-12-07T00:00:00Z | |
16 | 16 | python2.7 | 2021-07-15T00:00:00Z | 2022-05-30T00:00:00Z |
17 | 17 | ruby2.5 | 2021-07-30T00:00:00Z | 2022-03-31T00:00:00Z |
18 | 18 | nodejs8.10 | 2020-03-06T00:00:00Z | |
19 | 19 | dotnetcore1.0 | 2019-07-30T00:00:00Z | |
20 | 20 | nodejs4.3-edge | 2019-04-30T00:00:00Z | |
21 | 21 | python3.7 | 2023-10-10T00:00:00Z |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE aws_lambda_function_runtimes ( runtime TEXT NOT NULL, -- deprecation marks the "Phase 1" deprecations as noted in https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html: -- > Phase 1 - Lambda no longer applies security patches or other updates to -- > the runtime. You can no longer **create** functions that use the runtime, but -- > you can continue to update existing functions. This includes updating the -- > runtime version, and rolling back to the previous runtime version. Note -- > that functions that use a deprecated runtime are no longer eligible for -- > technical support deprecation TEXT, -- end_of_life marks the "Phase 2" deprecations as noted in https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html -- > Phase 2 - you can no longer **create or update** functions that use the -- > runtime. To update a function, you need to migrate it to a supported -- > runtime version. After you migrate the function to a supported runtime -- > version, you cannot rollback the function to the previous runtime. Phase 2 -- > starts at least 30 days after the start of Phase 1 end_of_life TEXT, UNIQUE (runtime) ON CONFLICT REPLACE );