'How to configure Amazon Client to use specific version of TLS for handshake

I need to specify version for handshake to Amazon S3 and i looked at Amazon library and see such explination SdkTLSSocketFactory

I create amazon client in a such way

        AmazonS3ClientBuilder.standard()
            .withCredentials(awsCredentials)
            .withRegion("eu-north-1")
            .build()

I think, i need to change SSlSocket and say AmazonSDK to use this one but how can i make it in a more proper way?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source