I've seen function handlers specified like this in your samples:
public string Handler(S3Event s3Event)
And also like this from the AWS Toolkit for VS/Lambda support:
public async Task Handler(S3Event input, ILambdaContext context)
Is there documentation anywhere on best practices?
I've seen function handlers specified like this in your samples:
public string Handler(S3Event s3Event)And also like this from the AWS Toolkit for VS/Lambda support:
public async Task Handler(S3Event input, ILambdaContext context)Is there documentation anywhere on best practices?