🌐
GitHub
github.com › aws › aws-lambda-java-libs
GitHub - aws/aws-lambda-java-libs: Official mirror for interface definitions and helper classes for Java code running on the AWS Lambda platform. · GitHub
This package provides helper classes/methods to use alongside aws-lambda-java-events in order to transform Lambda input event model objects into SDK-compatible output model objects.
Starred by 547 users
Forked by 240 users
Languages   C++ 51.2% | Java 46.2% | Shell 2.0% | CMake 0.3% | Makefile 0.2% | C 0.1%
🌐
GitHub
github.com › aws › aws-sdk-java › blob › master › aws-java-sdk-lambda › src › main › java › com › amazonaws › services › lambda › AWSLambda.java
aws-sdk-java/aws-java-sdk-lambda/src/main/java/com/amazonaws/services/lambda/AWSLambda.java at master · aws/aws-sdk-java
The AWS SDK for Java 2.x is available here: https://github.com/aws/aws-sdk-java-v2/ - aws-sdk-java/aws-java-sdk-lambda/src/main/java/com/amazonaws/services/lambda/AWSLambda.java at master · aws/aws-sdk-java
Author   aws
Discussions

AWS Lambda and S3 integration using AWS Java Sdk
I am trying to develop a AWS lambda function which is triggered when a file shows up in a specific s3 bucket. I am trying to follow the examples from AWS Lambda developer guide, using aws-java-sdk-... More on github.com
🌐 github.com
2
September 13, 2017
update aws lambda java libs to aws sdk java v2
update aws lambda java libs to aws sdk java v2 (https://github.com/aws/aws-sdk-java-v2) More on github.com
🌐 github.com
7
February 1, 2019
In what scenario does using Java in Lambda make sense?
Very often the best language for a team/org is not the "best" language for particular component. If it's a Java based team it often doesn't make sense to dump all that investment just for Lambda if Java performance there is acceptable. Personally I won't use Node for anything if I can possibly avoid it. If Python isn't fast enough and in particular if threading will help I'll use Go. But even as anti-Node as I admit I am, I absolutely respect that in shops with a lot of Javascript talent due to frontend work it often makes the most sense to go with Node for backend work despite its many hair pulling issues. It's much better to be pragmatic than "right". Lambda supports a ton of languages (effectively all of them if we count custom runtimes) because it's pragmatic. More on reddit.com
🌐 r/aws
62
25
March 28, 2024
AWS Lambda: Is there a good workaround for cold starts?
I’ll echo the sentiment of others here and say that a 3 second cold start is way outside the normal range I observe. Virtually all my lambdas in recent memory have cold starts under 200ms. In my case these are NodeJS lambdas deployed by CDK, using esbuild under the covers. They are small and start fast. Are you doing a lot of work outside the handler during init or something? If you are fetching parameter store values or similar in your init outside the handler then that may require more time. This extra overhead will be present regardless of language selection. More on reddit.com
🌐 r/aws
118
76
April 26, 2023
🌐
GitHub
github.com › newrelic › java-aws-lambda
GitHub - newrelic/java-aws-lambda: AWS Lambda OpenTracing Java SDK
AWS Lambda OpenTracing Java SDK. Contribute to newrelic/java-aws-lambda development by creating an account on GitHub.
Starred by 12 users
Forked by 7 users
Languages   Java 100.0% | Java 100.0%
🌐
GitHub
github.com › aws › aws-sdk-java-v2 › blob › master › archetypes › archetype-lambda › README.md
aws-sdk-java-v2/archetypes/archetype-lambda/README.md at master · aws/aws-sdk-java-v2
mvn archetype:generate \ -DarchetypeGroupId=software.amazon.awssdk \ -DarchetypeArtifactId=archetype-lambda \ -DarchetypeVersion=${version} \ -DgroupId=com.test \ -DartifactId=sample-project \ -Dservice=s3 \ -DinteractiveMode=false ... Specifies the service client to be used in the lambda function, eg: s3, dynamodb. You can find available services here. ... Specifies the http client to be used by the SDK client.
Author   aws
🌐
GitHub
github.com › aws › aws-sdk-java › tree › master › aws-java-sdk-lambda
aws-sdk-java/aws-java-sdk-lambda at master · aws/aws-sdk-java
The official AWS SDK for Java 1.x (In Maintenance Mode, End-of-Life on 12/31/2025). The AWS SDK for Java 2.x is available here: https://github.com/aws/aws-sdk-java-v2/ - aws-sdk-java/aws-java-sdk-lambda at master · aws/aws-sdk-java
Author   aws
🌐
AWS
docs.aws.amazon.com › aws sdk for java › developer guide for version 2.x › sdk for java 2.x code examples › lambda examples using sdk for java 2.x
Lambda examples using SDK for Java 2.x - AWS SDK for Java 2.x
For complete source code and instructions on how to set up and run, see the full example on GitHub ... The following code example shows how to create an AWS Step Functions state machine that invokes AWS Lambda functions in sequence. ... Shows how to create an AWS serverless workflow by using AWS Step Functions and the AWS SDK for Java 2.x.
🌐
GitHub
github.com › aws › aws-sdk-java › issues › 1300
AWS Lambda and S3 integration using AWS Java Sdk · Issue #1300 · aws/aws-sdk-java
September 13, 2017 - package example; import java.net.URLDecoder; import com.amazonaws.services.lambda.runtime.Context; import com.amazonaws.services.lambda.runtime.RequestHandler; import com.amazonaws.services.lambda.runtime.events.S3Event; import com.amazonaws.services.s3.AmazonS3; import com.amazonaws.services.s3.AmazonS3Client; import com.amazonaws.services.s3.event.S3EventNotification.S3EventNotificationRecord; public class S3GetTextBody implements RequestHandler<S3Event, String> { public String handleRequest(S3Event s3event, Context context) { try { S3EventNotificationRecord record = s3event.getRecords().get
Author   rtndp
🌐
AWS
docs.aws.amazon.com › aws sdk for java › developer guide for version 1.x › aws sdk for java code examples › lambda examples using the aws sdk for java
Lambda Examples Using the AWS SDK for Java - AWS SDK for Java 1.x
This section provides examples of programming Lambda using the AWS SDK for Java. The examples include only the code needed to demonstrate each technique. The complete example code is available on GitHub
Find elsewhere
🌐
GitHub
github.com › TechPrimers › aws-lambda-api-java-example
GitHub - TechPrimers/aws-lambda-api-java-example: AWS Lambda API Java Example using API Gateway trigger
This example code is used for running a Java Lambda using API Gateway trigger. It uses AWS Lambda Core SDK for RequestHandler implementation which is called by the trigger
Starred by 8 users
Forked by 22 users
Languages   Java 100.0% | Java 100.0%
🌐
GitHub
github.com › alfonsof › aws-java-v2-examples
GitHub - alfonsof/aws-java-v2-examples: Java examples on AWS (Amazon Web Services) using AWS SDK for Java (SDK V2). How to manage EC2 instances, Lambda Functions, S3 buckets, etc.
If you have to use AWS SDK for Java (SDK V1) you have the Java code examples on AWS following this link: https://github.com/alfonsof/aws-java-examples/ You must have an AWS (Amazon Web Services) account.
Starred by 2 users
Forked by 4 users
Languages   Java 100.0% | Java 100.0%
🌐
Amazon Web Services
docs.aws.amazon.com › aws lambda › developer guide › building lambda functions with java › java sample applications for aws lambda
Java sample applications for AWS Lambda - AWS Lambda
The GitHub repository for this guide provides sample applications that demonstrate the use of Java in AWS Lambda. Each sample application includes scripts for easy deployment and cleanup, an CloudFormation template, and supporting resources. ... – A Java function that demonstrates how you ...
🌐
GitHub
github.com › topics › aws-lambda-java
aws-lambda-java · GitHub Topics · GitHub
MerLoc is a live AWS Lambda function development and debugging tool. MerLoc allows you to run AWS Lambda functions on your local while they are still part of a flow in the AWS cloud remote. java debugging aws aws-lambda serverless jvm hot-reload aws-lambda-java
🌐
GitHub
github.com › alfonsof › aws-java-examples
GitHub - alfonsof/aws-java-examples: Java examples on AWS (Amazon Web Services) using AWS SDK for Java (SDK V1). How to manage EC2 instances, Lambda Functions, S3 buckets, etc. · GitHub
If you have to use AWS SDK for Java (SDK V2) you have the Java code examples on AWS following this link: https://github.com/alfonsof/aws-java-v2-examples/ You must have an AWS (Amazon Web Services) account.
Starred by 2 users
Forked by 5 users
Languages   Java
🌐
GitHub
github.com › markusklems › aws-lambda-java-example
GitHub - markusklems/aws-lambda-java-example: A simple Java Lambda based server-less application that implements a reimbursement use case, with AWS Lambda, AWS SES, and AWS DynamoDB
A simple Java Lambda based server-less application that implements a reimbursement use case, with AWS Lambda, AWS SES, and AWS DynamoDB - markusklems/aws-lambda-java-example
Starred by 53 users
Forked by 45 users
Languages   Java 100.0% | Java 100.0%
🌐
GitHub
github.com › aws › aws-lambda-java-libs › blob › main › aws-lambda-java-events-sdk-transformer › README.md
aws-lambda-java-libs/aws-lambda-java-events-sdk-transformer/README.md at main · aws/aws-lambda-java-libs
Official mirror for interface definitions and helper classes for Java code running on the AWS Lambda platform. - aws-lambda-java-libs/aws-lambda-java-events-sdk-transformer/README.md at main · aws/aws-lambda-java-libs
Author   aws
🌐
GitHub
github.com › aws-samples › aws-lambda-java-workshop
GitHub - aws-samples/aws-lambda-java-workshop: This project contains the code for the Java on AWS Lambda workshop
This project contains the code for the Java on AWS Lambda workshop - aws-samples/aws-lambda-java-workshop
Starred by 67 users
Forked by 40 users
Languages   Java 62.7% | Shell 21.1% | Batchfile 12.1% | Dockerfile 3.7% | Java 62.7% | Shell 21.1% | Batchfile 12.1% | Dockerfile 3.7%
🌐
GitHub
github.com › aws › aws-durable-execution-sdk-java
GitHub - aws/aws-durable-execution-sdk-java: Java SDK for AWS Lambda Durable Functions
March 3, 2026 - Java SDK for AWS Lambda Durable Functions. Contribute to aws/aws-durable-execution-sdk-java development by creating an account on GitHub.
Author   aws
🌐
GitHub
github.com › aws › aws-lambda-java-libs › issues › 74
update aws lambda java libs to aws sdk java v2 · Issue #74 · aws/aws-lambda-java-libs
February 1, 2019 - update aws lambda java libs to aws sdk java v2 (https://github.com/aws/aws-sdk-java-v2)
Author   SeekerWing
🌐
GitHub
github.com › aws-samples › serverless-java-frameworks-samples
GitHub - aws-samples/serverless-java-frameworks-samples · GitHub
This is a simple serverless application built in Java using popular frameworks — Micronaut, Quarkus, and Spring Boot · It consists of an Amazon API Gateway backed by four AWS Lambda functions and an Amazon DynamoDB table for storage.
Starred by 160 users
Forked by 41 users
Languages   Java 90.1% | JavaScript 6.2% | Shell 3.7%
🌐
GitHub
github.com › aws-samples › lambda-java-blockchain
GitHub - aws-samples/lambda-java-blockchain: Example of a blockchain application in Java interacting with Amazon Managed Blockchain using Fabric Java SDK
This project walks you through creating a blockchain application in Java running on AWS Lambda that interacts with your Amazon Managed Blockchain network using the Hyperledger Fabric Java SDK.
Starred by 15 users
Forked by 8 users
Languages   Java 93.4% | Shell 6.6% | Java 93.4% | Shell 6.6%