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
Post a Comment