🌐
GitHub
github.com › aws › aws-lambda-java-libs › blob › main › aws-lambda-java-events › README.md
aws-lambda-java-libs/aws-lambda-java-events/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/README.md at main · aws/aws-lambda-java-libs
Author   aws
🌐
GitHub
github.com › GoodforGod › aws-lambda-java-events
GitHub - GoodforGod/aws-lambda-java-events: 🔗 AWS Lambda Java Event POJOs library.
🔗 AWS Lambda Java Event POJOs library. Contribute to GoodforGod/aws-lambda-java-events development by creating an account on GitHub.
Starred by 2 users
Forked by 2 users
Languages   Java
Discussions

v4 Events Lib - Major Version Change
The next major version of the aws-lambda-java-events library is now being worked on. As part of this we are considering changes around serialization. Our goals are to make it easier for customers t... More on github.com
🌐 github.com
21
December 8, 2021
Any plan to add EventBridge event?
I'm not able to find out which is the runtime event class to access these events. There does not seem to be any EventBridge* class in the following link: https://github.com/aws/aws-lambda-java-libs/tree/master/aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events More on github.com
🌐 github.com
13
April 7, 2020
java - Is there a generic Event a AWS Lambda function can receive, and then determine which type of event is it? - Stack Overflow
AWS publishes many events in the aws-lambda-java-events library which includes generic events such as APIGatewayV2HTTPEvent. Those events essentially give you generic beans to handle the event JSON. Check out the project here: https://github.com/aws/aws-lambda-java-libs/tree/main/aws-lambd... More on stackoverflow.com
🌐 stackoverflow.com
Cannot run lambda function after upgrading aws-lambda-java-events to version 1.1.0
When building against aws-lambda-java-events 1.0.0, my lambda function runs correctly. However, after changing the dependency to 1.1.0, the lambda function fails with a NoClassDefFoundError Error l... More on github.com
🌐 github.com
9
August 28, 2015
🌐
GitHub
github.com › awsdocs › aws-lambda-developer-guide › tree › main › sample-apps › java-events
aws-lambda-developer-guide/sample-apps/java-events at main · awsdocs/aws-lambda-developer-guide
This sample application shows the use of the aws-lambda-java-events library with various event types. To keep the deployment size minimal, it includes only types that can be used without adding the AWS SDK as a dependency.
Author   awsdocs
🌐
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-lambda-java-libs › tree › main › aws-lambda-java-events
aws-lambda-java-libs/aws-lambda-java-events 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 at main · aws/aws-lambda-java-libs
Author   aws
🌐
GitHub
github.com › aws › aws-lambda-java-libs › blob › main › aws-lambda-java-events › RELEASE.CHANGELOG.md
aws-lambda-java-libs/aws-lambda-java-events/RELEASE.CHANGELOG.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/RELEASE.CHANGELOG.md at main · aws/aws-lambda-java-libs
Author   aws
🌐
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
<dependencies> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-dynamodb</artifactId> <version>1.11.914</version> </dependency> </dependencies> To convert a full DynamodbEvent object to an SDK v2 compatible List<Record>: import com.amazonaws.services.lambda.runtime.events.transformers.v2.DynamodbEventTransformer; public class DDBEventProcessor implements RequestHandler<DynamodbEvent, String> { public String handleRequest(DynamodbEvent ddbEvent, Context context) { // Process input event List<Record> convertedRecords = DynamodbEventTransformer.toRecordsV2(ddbEvent); // Modify records as needed and write back to DynamoDB using the DynamoDB AWS SDK for Java 2.0 } }
Author   aws
🌐
GitHub
github.com › aws › aws-lambda-java-libs › blob › main › aws-lambda-java-events › src › main › java › com › amazonaws › services › lambda › runtime › events › KafkaEvent.java
aws-lambda-java-libs/aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/KafkaEvent.java 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/src/main/java/com/amazonaws/services/lambda/runtime/events/KafkaEvent.java at main · ...
Author   aws
Find elsewhere
🌐
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
Each sample application includes scripts for easy deployment and cleanup, an CloudFormation template, and supporting resources. ... – A Java function that demonstrates how you can use Lambda to process orders. This function illustrates how to define and deserialize a custom input event object, ...
🌐
GitHub
github.com › aws › aws-lambda-java-libs › issues › 282
v4 Events Lib - Major Version Change · Issue #282 · aws/aws-lambda-java-libs
December 8, 2021 - The next major version of the aws-lambda-java-events library is now being worked on. As part of this we are considering changes around serialization. Our goals are to make it easier for customers t...
Author   msailes
🌐
GitHub
github.com › aws › aws-lambda-java-libs › tree › main › aws-lambda-java-tests
aws-lambda-java-libs/aws-lambda-java-tests at main · aws/aws-lambda-java-libs
The aws-lambda-java-tests module provides opinionated tools to ease Java Lambda testing. This is a test dependency. ... Load events from json files and get them deserialized into Java Events.
Author   aws
🌐
GitHub
github.com › aws › aws-lambda-java-libs › issues › 109
Any plan to add EventBridge event? · Issue #109 · aws/aws-lambda-java-libs
April 7, 2020 - I'm not able to find out which is the runtime event class to access these events. There does not seem to be any EventBridge* class in the following link: https://github.com/aws/aws-lambda-java-libs/tree/master/aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events
Author   alicanguclukol
🌐
GitHub
github.com › aws › aws-lambda-java-libs › blob › main › aws-lambda-java-tests › src › main › java › com › amazonaws › services › lambda › runtime › tests › EventLoader.java
aws-lambda-java-libs/aws-lambda-java-tests/src/main/java/com/amazonaws/services/lambda/runtime/tests/EventLoader.java at main · aws/aws-lambda-java-libs
import com.amazonaws.services.lambda.runtime.serialization.events.LambdaEventSerializers; · import java.io.*; · import com.amazonaws.services.lambda.runtime.events.*; · /** * Load events from json files and serialize them in Events · */ public class EventLoader { ·
Author   aws
🌐
GitHub
github.com › newrelic › java-aws-lambda
GitHub - newrelic/java-aws-lambda: AWS Lambda OpenTracing Java SDK
com.amazonaws:aws-lambda-java-events:3.15.0 (previous version: 2.2.7)
Starred by 12 users
Forked by 7 users
Languages   Java 100.0% | Java 100.0%
🌐
GitHub
gist.github.com › MichaelHabermas › 83af63655d801667f6b4389df5c8fba2
aws_lambda_hello_world.md · GitHub
plugins { id 'java' } repositories { mavenCentral() } dependencies { implementation platform('com.amazonaws:aws-java-sdk-bom:1.12.261') implementation 'com.amazonaws:aws-lambda-java-core:1.2.2' implementation 'com.amazonaws:aws-lambda-java-events:3.11.0' implementation 'com.google.code.gson:gson:2.10.1' testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2' } java { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 } test { useJUnitPlatform() } jar { manifest { attributes 'Main-Class': 'com.example.lambda.Handler' } from { configurations.runtimeClasspath.collect { it.isDirectory() ?
🌐
Maven Repository
mvnrepository.com › artifact › com.amazonaws › aws-lambda-java-events
Maven Repository: com.amazonaws » aws-lambda-java-events
July 16, 2025 - Event interface definitions AWS services supported by AWS Lambda. ... aar android apache api arm assets build build-system bundle client clojure cloud config cran data database eclipse example extension framework github gradle groovy io ios javascript jvm kotlin library logging maven mobile ...
🌐
Amazon Web Services
docs.aws.amazon.com › aws lambda › developer guide › building lambda functions with java
Building Lambda functions with Java - AWS Lambda
Since Java is a compiled language, you can't view or edit the source code in the Lambda console, but you can modify its configuration, invoke it, and configure triggers. To get started with application development in your local environment, deploy one of the sample applications available in this guide's GitHub repository. The Hello class has a function named handleRequest that takes an event ...
🌐
Amazon Web Services
docs.aws.amazon.com › aws lambda › developer guide › building lambda functions with java › using the lambda context object to retrieve java function information
Using the Lambda context object to retrieve Java function information - AWS Lambda
Each sample application includes scripts for easy deployment and cleanup, an AWS Serverless Application Model (AWS SAM) template, and supporting resources. ... – A Java function that demonstrates how you can use Lambda to process orders. This function illustrates how to define and deserialize ...
🌐
GitHub
github.com › aws › aws-lambda-java-libs › issues › 2
Cannot run lambda function after upgrading aws-lambda-java-events to version 1.1.0 · Issue #2 · aws/aws-lambda-java-libs
August 28, 2015 - When building against aws-lambda-java-events 1.0.0, my lambda function runs correctly. However, after changing the dependency to 1.1.0, the lambda function fails with a NoClassDefFoundError Error loading method recordHandler on class Han...
Author   chunyang