Rakesh Kumar
Rakesh Kumar

Reputation: 37

AWS lambda function deployment

I have developed a lambda function which hits API url and getting the data in Json Format. So need to use modules/libraries like requests which is not available in AWS online editor using Python 2.7.

So need to upload the code in Zip file, How we can do step by step to deploy Lambda function from windows local server to AWS console. What are the requirements?

Upvotes: 1

Views: 687

Answers (1)

AS-Sher
AS-Sher

Reputation: 369

You could use code build, which will build your code on the aws linux envoirnment. Then it wont matter if the envoirnment is windows or linux. code build will put the artifacts directly on s3, from there you can directly upload it to lambda.

Upvotes: 1

Related Questions