Cost difference between downloading S3 files into Lambda function via HTTPS VS SDK?

0

In the documentation, it states that downloading files from S3 is free from the same region. Question: does the download need to happen via s3.getObject({Key}) or can also happen via https.get('https://s3-...')? Speed seems the same. Thanks!

已提问 2 年前536 查看次数
1 回答
0

if you access via https://s3- you need to attach a signature to download the object or having the object public. In the case of s3.getObject the user/role that is downloading the object just needs the permission s3:getObject of the object you are downloading.

s3.getObject of the sdk is a wrapper of the REST Api call for S3, so overall they are both making an https request, but all depends from your case.

If the object is public and you don't want to use the sdk, then go with https://s3- but if your object is not public I would suggest to use the sdk as it makes easier and cleaner (from code point of you) to download the file.

Miki
已回答 2 年前
  • Thanks Miki, my question was only about billing. Let me rephrase the title.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则