Reputation: 19
I have 3 very simple individual python scripts using boto3
library for downloading, updating & reloading the file back to s3 bucket in AWS, all working fine.
However, wondering if the same is possible using AWS Lambda function? Your experience sharing is much appreciated.
Upvotes: 0
Views: 455
Reputation: 8435
Your scripts should work fine with AWS Lambda as long as they are fine with the following limitations:
For a full list of limitations of AWS Lambda have a look at http://docs.aws.amazon.com/lambda/latest/dg/limits.html
You even could react to S3 events when using AWS Lambda, so e.g. execute a script anytime a new object is created in S3. Check out the documentation if you're interested in that: http://docs.aws.amazon.com/lambda/latest/dg/invoking-lambda-function.html#supported-event-source-s3
Upvotes: 1