Skip to content

Network Drive location access using Lambda

0

Hi AWS, we have a requirement where in we are trying to access a network drive location from Lambda function and fetch few excels from it. If you can suggest a solution, it would be really helpful.

asked 2 years ago1.5K views
1 Answer
2

There's an example on accessing an Amazon FSx file system over SMB from a Lambda function here: https://aws.amazon.com/blogs/storage/enabling-smb-access-for-serverless-workloads/. One example is written in Python and uses the open-source smbprotocol library for SMB. The other example is written in C# and uses the open-source .Net library SMBLibrary.

The blog post discusses FSx as the file system, but it should work with any regular SMB file server that uses reasonably modern SMB protocol versions, like any self-managed Windows Server machine would do.

EXPERT
answered 2 years ago
EXPERT
reviewed 2 years ago
AWS
EXPERT
reviewed 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.