I'm new to AWS Lambda and interested in trying it. I have a MongoDB instance that I want to connect to through my AWS lambda function. How would I connect to my mongo instance? I can't load pymongo onto AWS Lambda so how would I get this to work in the Lambda function?
client = MongoClient()
client = MongoClient("mongodb://xxxxxx:27017 username user --password")