AWS Lambda Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:
=Create a Lambda Function=
=Create a Lambda Function=


Go to the AWS Lambda Console -> Left Vertical Menu -> Functions -> Create Function
* [[AWS Lambda Create a Lambda Function with Amazon Console|Create a Lambda Function with Amazon Console]]
 
Author from Scratch
 
==Basic Information==
 
====Function Name====
 
playground-example
 
====Runtime====
 
====Permissions====
 
Lambda will create an execution role with permission to upload logs to Amazon CloudWatch Logs. The permissions can be further modified later.
 
====Execution role====
 
Create a new role from AWS policy templates.
 
==Designer==
 
==Function code==
 
====Handler====
 
Either <''package''>.<''class-name''>::<''handler''> or <''package''>.<''class-name''>.
 
====Function Package====
 
For an example of how to write the Java behavior behind a Lambda Function: {{Internal|AWS Java Lambda Development|Java Lambda Development}}
 
==Environment variables==
 
==Tags==
 
==Execution Role==
 
==Basic Settings==
 
 
==Test==


=Lambda Function Integration with API Gateway=
=Lambda Function Integration with API Gateway=


{{Internal|Amazon API Gateway Lambda Integration Example|Amazon API Gateway Lambda Integration Example}}
{{Internal|Amazon API Gateway Lambda Integration Example|Amazon API Gateway Lambda Integration Example}}

Revision as of 17:25, 4 April 2019

Internal

Create a Lambda Function

Lambda Function Integration with API Gateway

Amazon API Gateway Lambda Integration Example