File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
example/software/ExampleFunction Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 7878 <artifactId >maven-compiler-plugin</artifactId >
7979 <version >3.8.1</version >
8080 <configuration >
81- <source >1.8 </source >
82- <target >1.8 </target >
81+ <source >17 </source >
82+ <target >17 </target >
8383 </configuration >
8484 </plugin >
8585 </plugins >
Original file line number Diff line number Diff line change @@ -49,7 +49,10 @@ public APIGatewayProxyResponseEvent handleRequest(final APIGatewayProxyRequestEv
4949 .tableName (TABLE_NAME )
5050 .item (itemAttributes )
5151 .build ());
52- return response .withBody ("successful" ).withStatusCode (200 );
52+ return response .withBody ("""
53+ successful
54+ multi-line
55+ response""" ).withStatusCode (200 );
5356 } catch (DynamoDbException e ) {
5457 context .getLogger ().log (e .getMessage ());
5558 return response .withBody ("error" ).withStatusCode (500 );
You can’t perform that action at this time.
0 commit comments