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'>
repositories {
   
    mavenCentral()
}
dependencies {
dependencies {
     // SDK 1
     // SDK 1
     implementation 'com.amazonaws:aws-java-sdk-lambda:1.11.509'
     implementation 'com.amazonaws:aws-java-sdk-lambda:1.11.509'
}
}
</syntaxhighlight>
</syntaxhighlight>

Revision as of 22:42, 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/

repositories {
    
    mavenCentral()
}

dependencies {

    // SDK 1
    implementation 'com.amazonaws:aws-java-sdk-lambda:1.11.509'
}