From 51f4bc7b21e96597c12c31d96ab7e4c1fa6dfb5b Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Tue, 14 Mar 2023 16:12:15 +0100 Subject: [PATCH 1/2] Add link to a set of Spring-based AWS Lambda samples --- doc_source/lambda-samples.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc_source/lambda-samples.md b/doc_source/lambda-samples.md index 700c9879..13bcd868 100644 --- a/doc_source/lambda-samples.md +++ b/doc_source/lambda-samples.md @@ -31,6 +31,7 @@ The GitHub repository for this guide includes sample applications that demonstra **Sample Lambda applications in Java** + [java\-basic](https://github.com/awsdocs/aws-lambda-developer-guide/tree/main/sample-apps/java-basic) – A collection of minimal Java functions with unit tests and variable logging configuration\. ++ [spring\-samples](https://github.com/spring-cloud/spring-cloud-function/tree/3.2.x/spring-cloud-function-samples/function-sample-aws) – A set of example demonstrating several ways to benefit from using [Spring Cloud Function](https://spring.io/projects/spring-cloud-function) framework when working with AWS Lambdas\. + [java\-events](https://github.com/awsdocs/aws-lambda-developer-guide/tree/main/sample-apps/java-events) – A collection of Java functions that contain skeleton code for how to handle events from various services such as Amazon API Gateway, Amazon SQS, and Amazon Kinesis\. These functions use the latest version of the [aws\-lambda\-java\-events](java-package.md) library \(3\.0\.0 and newer\)\. These examples do not require the AWS SDK as a dependency\. + [s3\-java](https://github.com/awsdocs/aws-lambda-developer-guide/tree/main/sample-apps/s3-java) – A Java function that processes notification events from Amazon S3 and uses the Java Class Library \(JCL\) to create thumbnails from uploaded image files\. + [Use API Gateway to invoke a Lambda function](https://docs.aws.amazon.com/lambda/latest/dg/example_cross_LambdaAPIGateway_section.html) – A Java function that scans a Amazon DynamoDB table that contains employee information\. It then uses Amazon Simple Notification Service to send a text message to employees celebrating their work anniversaries\. This example uses API Gateway to invoke the function\. From 2316ef933ba30de6807859bf13a478773093fabc Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Tue, 14 Mar 2023 16:47:54 +0100 Subject: [PATCH 2/2] Update doc_source/lambda-samples.md Co-authored-by: Mark Sailes <45629314+msailes@users.noreply.github.com> --- doc_source/lambda-samples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_source/lambda-samples.md b/doc_source/lambda-samples.md index 13bcd868..6b8fe12d 100644 --- a/doc_source/lambda-samples.md +++ b/doc_source/lambda-samples.md @@ -31,7 +31,7 @@ The GitHub repository for this guide includes sample applications that demonstra **Sample Lambda applications in Java** + [java\-basic](https://github.com/awsdocs/aws-lambda-developer-guide/tree/main/sample-apps/java-basic) – A collection of minimal Java functions with unit tests and variable logging configuration\. -+ [spring\-samples](https://github.com/spring-cloud/spring-cloud-function/tree/3.2.x/spring-cloud-function-samples/function-sample-aws) – A set of example demonstrating several ways to benefit from using [Spring Cloud Function](https://spring.io/projects/spring-cloud-function) framework when working with AWS Lambdas\. ++ [spring\-samples](https://github.com/spring-cloud/spring-cloud-function/tree/3.2.x/spring-cloud-function-samples/function-sample-aws) – An example demonstrating how to use [Spring Cloud Function](https://spring.io/projects/spring-cloud-function) framework when working with AWS Lambda functions\. + [java\-events](https://github.com/awsdocs/aws-lambda-developer-guide/tree/main/sample-apps/java-events) – A collection of Java functions that contain skeleton code for how to handle events from various services such as Amazon API Gateway, Amazon SQS, and Amazon Kinesis\. These functions use the latest version of the [aws\-lambda\-java\-events](java-package.md) library \(3\.0\.0 and newer\)\. These examples do not require the AWS SDK as a dependency\. + [s3\-java](https://github.com/awsdocs/aws-lambda-developer-guide/tree/main/sample-apps/s3-java) – A Java function that processes notification events from Amazon S3 and uses the Java Class Library \(JCL\) to create thumbnails from uploaded image files\. + [Use API Gateway to invoke a Lambda function](https://docs.aws.amazon.com/lambda/latest/dg/example_cross_LambdaAPIGateway_section.html) – A Java function that scans a Amazon DynamoDB table that contains employee information\. It then uses Amazon Simple Notification Service to send a text message to employees celebrating their work anniversaries\. This example uses API Gateway to invoke the function\.