Home > Enterprise >  Need a way to mount or share s3 or any other aws storage service in windows ec2 instance
Need a way to mount or share s3 or any other aws storage service in windows ec2 instance

Time:11-19

We have use case where we want the ability to create shareable drive that would link our ec2 windows instance with any of the storage service (s3 or any other service), such that our user would upload their pdf files in that storage and will be accessible by our windows ec2 instance in which we have program that does pdf files processing. So is there way we can achieve this in aws?

CodePudding user response:

Since your Windows software requires a 'local drive' to detect input files, you could mount an Amazon S3 bucket using utilities such as:

Your web application would still be responsible for authenticating users and Uploading objects using presigned URLs - Amazon Simple Storage Service directly to Amazon S3. Your app would also need to determine how to handle the 'output' files so that users can access their converted file.

  • Related