Calling AWS services with AWS SDK outside of AWS

0

Hi everyone,

This is probably a dumb question, but is there a way we can call AWS services with AWS SDK (e.g. boto3) outside of AWS / AWS lambda functions? i.e. Besides leveraging on AWS CLI, AWS API Gateway and/or Lambda functions with the right permissions.

Thank you!

3 個答案
3

You can use AWS SDK in applications running outside of AWS, the only thing you have to configure properly in that case is AWS credentials. Since you mentioned boto3 you can check the example documentation for boto3 on how credentials are used: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html

Based on the credentials you will get appropriate access to AWS resources.

已回答 2 年前
profile pictureAWS
專家
已審閱 2 年前
  • Awesome, thank you so much for your help! I just thought about AWS Cognito Identity Pools but your suggestion and link provided answers my question perfectly, I had no idea we could embed credentials in functions like that

  • One thing I want to mention, is make sure you don't hard code credentials in functions/applications which you ship to end users. And AWS Cognito will be right choice when for example you want to allow your mobile app users to be able to upload to s3 bucket directly from you mobile app.

1

Yes, the SDKs can be used from anywhere where it runs: Raspberry Pi, macOS.....

AWS
已回答 2 年前
  • Thanks! But if we write a function outside of AWS lambda, it needs to have the permissions to manage AWS resources. Without leveraging on AWS lambda functions and API gateway, can we assign the necessary permissions to those external functions?

  • Update: Thanks! I had no idea we could embed credentials in functions

0

Use AWS Toolkit for the Eclipse IDE to develop, debug, and deploy Java applications that use Amazon Web Services. https://docs.aws.amazon.com/toolkit-for-eclipse/v1/user-guide/welcome.html https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/setup-credentials.html

已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南