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!

demandé il y a 2 ans536 vues
1 réponse
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
répondu il y a 2 ans
  • Thanks Miki, my question was only about billing. Let me rephrase the title.

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions