Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/aws-lambda-http.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ Do not change the Lambda handler name.
----
Properties:
Handler: io.quarkus.amazon.lambda.runtime.QuarkusStreamHandler::handleRequest
Runtime: java17
Runtime: java21
----

This handler is a bridge between the lambda runtime and the Quarkus HTTP framework you are using (Jakarta REST, Servlet, etc.)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Type: AWS::Serverless::Function
Properties:
Handler: io.quarkus.amazon.lambda.runtime.QuarkusStreamHandler::handleRequest
Runtime: java17
Runtime: java21
CodeUri: function.zip
MemorySize: 512
Policies: AWSLambdaBasicExecutionRole
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Resources:
Type: AWS::Serverless::Function
Properties:
Handler: ${handler}
Runtime: java17
Runtime: java21
CodeUri: function.zip
MemorySize: 256
Timeout: 15
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ compileJava {
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ AWSTemplateFormatVersion: '2010-09-09'
Type: AWS::Serverless::Function
Properties:
Handler: io.quarkus.funqy.lambda.FunqyStreamHandler::handleRequest
Runtime: java8
Runtime: java21
CodeUri: target/${artifactId}-${version}-runner.jar
MemorySize: 128
Timeout: 15
Policies: AWSLambdaBasicExecutionRole
Policies: AWSLambdaBasicExecutionRole
Loading