user8079405
user8079405

Reputation:

Get local Files from Python lambda Function

i want get a file (List of files) located in my Local machine using a python lambda Function.

Im using the So library and try run local and works, but when y try run in aws my code does not detect the file.

I need verify a folder and it if has a file, upload this file to s3. This process (Verification and upload) will run according to a schedule.

Batch file it´s not a option.

Thanks for the help

Upvotes: 0

Views: 425

Answers (1)

John Rotenstein
John Rotenstein

Reputation: 269111

It appears you are referring to: Access data sources on premises - Azure Logic Apps | Microsoft Docs

No, there is no equivalent for AWS Lambda functions.

An AWS Lambda function can access services on the Internet (eg make API calls, access websites), but you would need to code that yourself.

Upvotes: 1

Related Questions