AWS SDK for Java Version 2: Difference between revisions
Jump to navigation
Jump to search
Line 26: | Line 26: | ||
=<span id='Component_APIs'></span>Component APIs that Use SDK for Java Version 2= | =<span id='Component_APIs'></span>Component APIs that Use SDK for Java Version 2= | ||
* [[AWS_KMS_API#Overview|AWS KMS API]] | * [[AWS_KMS_API#Overview|AWS KMS API]] | ||
* [[Amazon Kinesis Stream with AWS SDK for Java#Overview|Amazon Kinesis Stream with AWS SDK for Java]] | * [[Amazon Kinesis Stream with AWS SDK for Java#Overview|Amazon Kinesis Stream with AWS SDK for Java]] | ||
* [[AWS_Java_Lambda_Development#Dependencies|Lambda]] | * [[AWS_Java_Lambda_Development#Dependencies|Lambda]] | ||
* [[Amazon Encryption SDK]] | * [[Amazon Encryption SDK]] |
Revision as of 05:36, 3 October 2021
External
- Maven Repository Location https://repo1.maven.org/maven2/software/amazon/awssdk/aws-sdk-java/
- Developer Guide https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/home.html
- API Reference: https://sdk.amazonaws.com/java/api/latest/
Internal
Gradle Project Setup
Add the AWS SDK 2 BOM to the dependencies
section of the file, and then declare individual SDK dependencies without a version:
repositories {
mavenCentral()
}
dependencies {
implementation platform('software.amazon.awssdk:bom:2.17.51')
// Declare individual SDK dependencies without version
implementation 'software.amazon.awssdk:kinesis'
implementation 'software.amazon.awssdk:s3'
}