Reputation: 1624
I am using the getObject
() method of the AmazonS3Client
class to retrieve an object stored in my S3 bucket.
When calling this method, is the object requested over an SSL connection? Or do I need to encrypt the Object that I am retrieving in case the request is intercepted?
Upvotes: 0
Views: 355
Reputation: 201028
The AWS Java SDK uses SSL by default. You can read more about that here: http://aws.amazon.com/articles/1928
Upvotes: 2