AWS S3 Java API: Difference between revisions
Jump to navigation
Jump to search
(3 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
=Internal= | =Internal= | ||
* [[Amazon_S3#Subjects|Amazon S3]] | * [[Amazon_S3#Subjects|Amazon S3]] | ||
* [[ | * [[AWS_SDK_for_Java_Version_1#Component_APIs_that_Use_SDK_for_Java_Version_1|AWS SDK for Java Version 1]] | ||
=Grade Setup= | =Grade Setup= | ||
{{Internal| | Follow the BOM setup procedure described here: | ||
{{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: | |||
<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'
}