amazon web services - AWS S3 .NET SDK: is the connection encrypted? -


i know how upload object s3 using .net sdk:

        iamazons3 client = new amazons3client(accesskey, secretekey, enregion);         putobjectrequest putreq = new putobjectrequest();         putreq.filepath = strlocalfilepath;         putreq.bucketname = strbucketname;         putreq.key = strkeyname;         putreq.serversideencryptionmethod = serversideencryptionmethod.aes256;         putobjectresponse putresp = client.putobject(putreq); 

what don't know is: connection encrypted (ssl)? if not, how make connection encrypted? in other words, how make data in transit encrypted?

the aws api endpoints available both http , https.

the aws sdks connect via https. thus, traffic encrypted.


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -