AWS Java Lambda Development: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 14: Line 14:


<syntaxhighlight lang='groovy'>
<syntaxhighlight lang='groovy'>
dependencies {
    // SDK 1
    implementation 'com.amazonaws:<component-name>:1.<minor>.<patch>'
}
</syntaxhighlight>
</syntaxhighlight>

Revision as of 22:18, 7 March 2019

Internal

Overview

Playground

https://github.com/ovidiuf/playground/tree/master/amazon/lambda/java/01-simplest

Dependencies

SDK 1.0: http://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-lambda/

dependencies {
    // SDK 1
    implementation 'com.amazonaws:<component-name>:1.<minor>.<patch>'
}