--- title: 'AWS Lambda' description: 'Manage and invoke serverless functions on AWS Lambda.' --- # 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 1. Go to **Connections** and click **New Connection**. 2. Pick **AWS Lambda** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /2015-03-31/functions](./get_2015_03_31_functions_cloud_listfunctions) | List Lambda functions | | [POST /2015-03-31/functions](./post_2015_03_31_functions_cloud_createfunction) | Create a Lambda function | | [GET /2015-03-31/functions/{FunctionName}](./get_2015_03_31_functions_functionname_cloud_getfunction) | Get function details | | [DELETE /2015-03-31/functions/{FunctionName}](./delete_2015_03_31_functions_functionname_cloud_deletefunction) | Delete a Lambda function | | [POST /2015-03-31/functions/{FunctionName}/invocations](./post_2015_03_31_functions_functionname_invocations_cloud_invokefunction) | Invoke a Lambda function | | [PUT /2015-03-31/functions/{FunctionName}/configuration](./put_2015_03_31_functions_functionname_configuration_cloud_updatefunctionconfiguration) | Update function configuration | | [POST /2015-03-31/functions/{FunctionName}/versions](./post_2015_03_31_functions_functionname_versions_cloud_publishversion) | Publish a new function version | | [GET /2015-03-31/functions/{FunctionName}/aliases](./get_2015_03_31_functions_functionname_aliases_cloud_listaliases) | List function aliases | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.