Maven dependencies for AWS S3 classes
10:31 22 Dec 2020

Could anyone help me with maven and AWS? In the documentation, they explain that we need to add the following dependencies:


    
        
            
                software.amazon.awssdk
                bom
                2.X.X
                pom
                import
            
        
    

I did that. And I wanted to add dependencies to use S3 classes (like AmazonS3Client and such). In mavenrepository, I found the package S3 but when I add it in my pom.xml file, IntelliJ can not find it.



    com.amazonaws
    aws-java-sdk-s3
    1.11.923

Could anyone help me and tell me what is wrong with what I'm doing? I've been trying so many option but I can't figure it out. All I want is to use S3 objects from a JAVA program (basically an aws lambda function)

amazon-web-services maven amazon-s3 aws-sdk aws-sdk-java-2.0