This page provides a reference for AWS Lambda actions available in the workflow automation actions catalog. Use these actions to manage and invoke Lambda functions as part of your workflow definitions.
Prerequisites
Before using AWS Lambda actions in workflow automation, ensure you have:
- An AWS account with appropriate permissions.
- AWS credentials configured (IAM user credentials, IAM role ARN, or session credentials). At least one credential option must be provided — IAM role takes precedence over static access keys.
- The necessary IAM permissions for the specific Lambda operations you plan to use.
See Set up AWS credentials for information on how to create IAM users and IAM roles, and set up static and session AWS credentials for integration with workflow automation AWS actions.
Invoke a Lambda function
The action identifier is aws.lambda.invoke.
Invokes a Lambda function synchronously or asynchronously with an optional payload.
The following table describes the input fields for this action.
Input | Type | Description | Example |
|---|---|---|---|
| String | Optional. IAM role ARN to assume for AWS API calls. |
|
| String | Optional. AWS access key ID. Pass as a secret. |
|
| String | Optional. AWS secret access key. Pass as a secret. |
|
| String | Optional. Temporary session token for STS authentication. Pass as a secret. |
|
| String | Required. AWS region where the function is located. |
|
| String | Required. Name of the Lambda function to invoke. |
|
| Map | Optional. Input payload to pass to the function. |
|
| List | Optional. JQ selectors to extract specific fields from the action output. |
|
The following table describes the output fields for this action.
Output | Type | Example |
|---|---|---|
| Map |
|
| Int |
|
| String |
|
| String |
|
| Boolean |
|
| String | Error message on failure. |
Update Lambda function configuration
The action identifier is aws.lambda.updateFunctionConfiguration.
Modifies the configuration of a Lambda function. Provide only the parameters you want to change.
The following table describes the input fields for this action.
Input | Type | Description | Example |
|---|---|---|---|
| String | Optional. IAM role ARN to assume for AWS API calls. |
|
| String | Optional. AWS access key ID. Pass as a secret. |
|
| String | Optional. AWS secret access key. Pass as a secret. |
|
| String | Optional. Temporary session token for STS authentication. Pass as a secret. |
|
| String | Required. AWS region where the function is located. |
|
| String | Required. Name of the Lambda function to update. |
|
| String | Optional. ARN of the IAM role to assign to the function. |
|
| String | Optional. Updated handler for the function. |
|
| String | Optional. Updated description for the function. |
|
| Map | Optional. Additional boto3 fields not otherwise modeled. Accepts any optional argument from the API. |
|
| List | Optional. JQ selectors to extract specific fields from the action output. |
|
The following table describes the output fields for this action.
Output | Type | Example |
|---|---|---|
| Object |
|
| Boolean |
|
| String |
|
Describe a Lambda function
The action identifier is aws.lambda.getFunction.
Retrieves the configuration details, code location, and other metadata for a specific Lambda function.
The following table describes the input fields for this action.
Input | Type | Description | Example |
|---|---|---|---|
| String | Optional. IAM role ARN to assume for AWS API calls. |
|
| String | Optional. AWS access key ID. Pass as a secret. |
|
| String | Optional. AWS secret access key. Pass as a secret. |
|
| String | Optional. Temporary session token for STS authentication. Pass as a secret. |
|
| String | Required. AWS region where the function is located. |
|
| String | Required. Name of the Lambda function. |
|
| Map | Optional. Additional boto3 fields not otherwise modeled. Accepts any optional argument from the API. |
|
| List | Optional. JQ selectors to extract specific fields from the action output. |
|
The following table describes the output fields for this action.
Output | Type | Example |
|---|---|---|
| Object | Full API response. See the get_function Boto3 reference. |
| Boolean |
|
| String |
|
List aliases for a Lambda function
The action identifier is aws.lambda.listAliases.
Returns a list of aliases for a Lambda function. Aliases are named pointers to function versions. Use marker and maxItems to paginate through large result sets.
The following table describes the input fields for this action.
Input | Type | Description | Example |
|---|---|---|---|
| String | Optional. IAM role ARN to assume for AWS API calls. |
|
| String | Optional. AWS access key ID. Pass as a secret. |
|
| String | Optional. AWS secret access key. Pass as a secret. |
|
| String | Optional. Temporary session token for STS authentication. Pass as a secret. |
|
| String | Required. AWS region where the function is located. |
|
| String | Required. Name of the Lambda function. |
|
| String | Optional. Pagination token. Pass the |
|
| Int | Optional. Maximum number of aliases to return. |
|
| Map | Optional. Additional boto3 fields not otherwise modeled. Accepts any optional argument from the API. |
|
| List | Optional. JQ selectors to extract specific fields from the action output. |
|
The following table describes the output fields for this action.
Output | Type | Example |
|---|---|---|
| Object | Full API response. See the list_aliases Boto3 reference. |
| Boolean |
|
| String |
|
List Lambda functions
The action identifier is aws.lambda.listFunctions.
Returns a list of Lambda functions in a region, with the version-specific configuration of each. AWS returns at most 50 functions per call — use marker and maxItems to paginate through large result sets.
This action returns a subset of FunctionConfiguration fields. To get the complete set — including State, StateReasonCode, LastUpdateStatus, and RuntimeVersionConfig — use aws.lambda.getFunction instead.
The following table describes the input fields for this action.
Input | Type | Description | Example |
|---|---|---|---|
| String | Optional. IAM role ARN to assume for AWS API calls. |
|
| String | Optional. AWS access key ID. Pass as a secret. |
|
| String | Optional. AWS secret access key. Pass as a secret. |
|
| String | Optional. Temporary session token for STS authentication. Pass as a secret. |
|
| String | Required. AWS region to list functions from. |
|
| String | Optional. Set to |
|
| String | Optional. Pagination token. Pass the |
|
| Int | Optional. Maximum number of functions to return per call. AWS caps this at 50 regardless of a higher value. |
|
| Map | Optional. Additional boto3 fields not otherwise modeled. |
|
| List | Optional. JQ selectors to extract specific fields from the action output. |
|
The following table describes the output fields for this action.
Output | Type | Example |
|---|---|---|
| Object |
|
| Boolean |
|
| String |
|
Get Lambda durable execution history
The action identifier is aws.lambda.getDurableExecutionHistory.
Retrieves the execution history for a Lambda durable execution, showing all steps, callbacks, and events that occurred. This action applies to Lambda durable executions only — it cannot retrieve invocation history for regular Lambda functions. History is available while the execution is running and for a configurable retention period after it completes (1–90 days, default 30 days).
For long-running executions with many steps or callbacks, set includeExecutionData to false when you only need event types and timestamps rather than full payloads — this produces a more compact response.
The following table describes the input fields for this action.
Input | Type | Description | Example |
|---|---|---|---|
| String | Optional. IAM role ARN to assume for AWS API calls. |
|
| String | Optional. AWS access key ID. Pass as a secret. |
|
| String | Optional. AWS secret access key. Pass as a secret. |
|
| String | Optional. Temporary session token for STS authentication. Pass as a secret. |
|
| String | Required. AWS region where the durable execution is located. |
|
| String | Required. ARN of the durable execution to retrieve history for. |
|
| Boolean | Optional. Include step results and callback payloads in the history events. Set to |
|
| Int | Optional. Maximum number of history events to return per call. Default 100, maximum 1000. Set to |
|
| String | Optional. Pagination token. Pass the |
|
| Boolean | Optional. Return events newest-first (reverse chronological). Defaults to |
|
| Map | Optional. Additional boto3 fields not otherwise modeled. | |
| List | Optional. JQ selectors to extract specific fields from the action output. |
|
The following table describes the output fields for this action.
Output | Type | Example |
|---|---|---|
| Object |
|
| Boolean |
|
| String |
|
Set Lambda function concurrency
The action identifier is aws.lambda.putFunctionConcurrency.
Sets the reserved concurrency for a Lambda function — the maximum number of simultaneous executions. Reserving concurrency both ensures that the function has capacity for that number of simultaneous executions and prevents it from scaling beyond that level. The concurrency setting applies to all published versions and the unpublished version. Setting reservedConcurrentExecutions to 0 disables the function without deleting it.
The following table describes the input fields for this action.
Input | Type | Description | Example |
|---|---|---|---|
| String | Optional. IAM role ARN to assume for AWS API calls. |
|
| String | Optional. AWS access key ID. Pass as a secret. |
|
| String | Optional. AWS secret access key. Pass as a secret. |
|
| String | Optional. Temporary session token for STS authentication. Pass as a secret. |
|
| String | Required. AWS region where the function is located. |
|
| String | Required. Name, |
|
| Int | Required. Number of simultaneous executions to reserve. Minimum value is |
|
| Map | Optional. Additional boto3 fields not otherwise modeled. | |
| List | Optional. JQ selectors to extract specific fields from the action output. |
|
The following table describes the output fields for this action.
Output | Type | Example |
|---|---|---|
| Object |
|
| Boolean |
|
| String |
|