AWS S3 Java API: Difference between revisions
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 9: | Line 9: | ||
{{Internal|AWS_SDK_for_Java_Version_1#Gradle_Project_Setup|AWS SDK for Java Version 1 | Gradle Project Setup}} | {{Internal|AWS_SDK_for_Java_Version_1#Gradle_Project_Setup|AWS SDK for Java Version 1 | Gradle Project Setup}} | ||
Then add the following individual component dependency: | Then add the following individual component dependency: | ||
<syntaxhighlight lang='groovy'> | |||
dependencies { | |||
implementation 'com.amazonaws:aws-java-sdk-s3' | |||
} | |||
</syntaxhighlight> | |||
=Use Cases= | |||
* [[Generate an AWS S3 Presigned URL with Java JDK]] |
Latest revision as of 07:00, 3 October 2021
External
Internal
Grade Setup
Follow the BOM setup procedure described here:
Then add the following individual component dependency:
dependencies {
implementation 'com.amazonaws:aws-java-sdk-s3'
}