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.

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ