I am trying to develop a lambda using the AWS-Csharp template. The lambda is listening to S3 for any objects created with a .docx extension. I have configured my serverless.yml with the desired settings, and the lamda does fire. However, where I am now stuck is how do I get the event information within my Handler ?
Do I need to add a reference to the Amazon.lambda.S3Events library to my Lamda or is there already something baked in I should use?
I couldn’t find any samples relating to this using any other static type language, although there are Node samples but they don’t seem to add any other packages to perform this function. I was wondering if this is only particular to C# that we need to add a reference to the Amazon.
Are there any C# samples available ?