theyuv
theyuv

Reputation: 1624

Retrieving S3 Object via Java AWS SDK

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

Answers (1)

Mark B
Mark B

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

Related Questions