Lambda provides the container to run several runtimes like Python, Java, .NET Core, Go, and Node.js. With AWS Lambda, you can specify the resources that your application will need and it will be executed as a response to events or schedules.
- To get started with your first Lambda function, navigate to the Lambda service and choose Create a function, as shown in the following screenshot:
- We will make use of the function Blueprints to create a faces detection function that uses Amazon Rekognition to extract metadata out of images uploaded to an S3 bucket. The final result will be a print to the standard output of the Lambda container that will be streamed to CloudWatch logs. The code performs an analysis trying to find image landmarks using machine learning.
For more information about detecting images in faces using Amazon Rekognition, use the following link: https...