Note: If you are brand new to AWS Serverless application, please see Lambda-based Applications for more information.
The serverless.template file under your workspace is a simplified version of AWS Serverless Application Model (SAM) that leverages the Eclipse toolkit so that you only need to specify the parameters you care about. Specifically, the toolkit helps you with the following settings:
Note: If this project is created from a blueprint, go to Step 2. The blueprint already implemented all the Lambda functions.
Open up all the Lambda function files in your function package and implement the handleRequest method for each of them. This method is the entry point for your Lambda function, and it will be invoked by Lambda in response to input from the event sources of your function.
Note: You can add new classes and additional external dependencies in your project if needed.
Under Project or Package Explorer View, right-click on your project and select Amazon Web Services -> Deploy Serverless Project.... Then follow the steps to create a new AWS CloudFormation stack with all the resources related to Lambda functions.
If you want to know more about AWS Lambda, check out the following links:
If you want to know more about AWS API Gateway, check out the following links:
If you want to know more about AWS CloudFormation, check out the following links:
Contact us to send bug reports and feedbacks.
AWS SDK for Java team