Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 1.46 KB

README.md

File metadata and controls

52 lines (41 loc) · 1.46 KB

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"