AWS Lambda ​
Manage and invoke serverless functions on AWS Lambda.
| Detail | Value |
|---|---|
| Category | Cloud & Infra |
| Base URL | https://lambda.us-east-1.amazonaws.com |
| Authentication | API Key |
| Endpoints | 8 |
| Connector key | aws-lambda |
Using AWS Lambda in a workflow ​
- Go to Connections and click New Connection.
- Pick AWS Lambda from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — see the table below.
Available Endpoints ​
| Endpoint | Summary |
|---|---|
| GET /2015-03-31/functions | List Lambda functions |
| POST /2015-03-31/functions | Create a Lambda function |
| GET /2015-03-31/functions/{FunctionName} | Get function details |
| DELETE /2015-03-31/functions/{FunctionName} | Delete a Lambda function |
| POST /2015-03-31/functions/{FunctionName}/invocations | Invoke a Lambda function |
| PUT /2015-03-31/functions/{FunctionName}/configuration | Update function configuration |
| POST /2015-03-31/functions/{FunctionName}/versions | Publish a new function version |
| GET /2015-03-31/functions/{FunctionName}/aliases | List function aliases |
Each endpoint has its own page with parameter details, an example
API Callnode configuration, and the response shape.