/aws-lambda-java-libs

Official mirror for interface definitions and helper classes for Java code running on the AWS Lambda platform.

Primary LanguageJavaApache License 2.0Apache-2.0

AWS Lambda Java Support Libraries

Interface definitions for Java code running on the AWS Lambda platform.

For issues and questions, you can start with our FAQ and the AWS forums

To get started writing AWS Lambda functions in Java, check out the [official documentation] (http://docs.aws.amazon.com/lambda/latest/dg/java-gs.html).


Maven

<dependency>
  <groupId>com.amazonaws</groupId>
  <artifactId>aws-lambda-java-core</artifactId>
  <version>1.1.0</version>
</dependency>
<dependency>
  <groupId>com.amazonaws</groupId>
  <artifactId>aws-lambda-java-events</artifactId>
  <version>1.1.0</version>
</dependency>
<dependency>
  <groupId>com.amazonaws</groupId>
  <artifactId>aws-lambda-java-log4j</artifactId>
  <version>1.0.0</version>
</dependency>

Gradle

'com.amazonaws:aws-lambda-java-core:1.1.0'
'com.amazonaws:aws-lambda-java-events:1.1.0'
'com.amazonaws:aws-lambda-java-log4j:1.0.0'

Leiningen and Boot

[com.amazonaws/aws-lambda-java-core "1.1.0"]
[com.amazonaws/aws-lambda-java-events "1.1.0"]
[com.amazonaws/aws-lambda-java-log4j "1.0.0"]

sbt

"com.amazonaws" % "aws-lambda-java-core" % "1.1.0"
"com.amazonaws" % "aws-lambda-java-events" % "1.1.0"
"com.amazonaws" % "aws-lambda-java-log4j" % "1.0.0"