Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Lambda layer supported runtimes #683

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/main/java/gyro/aws/lambda/LayerResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
* description: "lambda-layer-example-desc"
* content-zip-path: "example-function.zip"
* compatible-runtimes: [
* "nodejs8.10"
* "nodejs20.x"
* ]
* end
*/
Expand Down Expand Up @@ -112,10 +112,9 @@ public void setLicenseInfo(String licenseInfo) {
}

/**
* The list of runtime language for the function using this Lambda Layer.
* The list of runtime language for the function using this Lambda Layer. See `Supported Runtimes for Lambda <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html>`_.
*/
@Required
@ValidStrings({"nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "python3.7", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "nodejs4.3-edge", "go1.x", "ruby2.5", "provided"})
public Set<String> getCompatibleRuntimes() {
if (compatibleRuntimes == null) {
compatibleRuntimes = new HashSet<>();
Expand Down
Loading