Accessing an AWS Lambda function from a java web application application is done over Https or Http
问题 I am accessing a lambda function from my java code and I would like to know if I am using Https or Https for that request. How can I do that. This is how my method looks like. public interface FileScanService { @LambdaFunction( functionName = "s3-antivirus-api-scan" ) public FileScanOutput scanFile( FileScanInput fileScanInput ); } PS: this method is fully functional. 回答1: UPDATE : See the comment by Michael below. It turns out there is a way how to do it directly via HTTPS. A Lambda function