AWS Lambda Component

List and invoke AWS Lambda functions
Component key: aws-lambda#
DescriptionAWS Lambda is an event-driven, serverless computing platform provided by Amazon as a part of Amazon Web Services. The AWS Lambda component allows you to manage and interact with AWS Lambda functions.
#
AWS Lambda Connections#
AWS Lambda Access Key and SecretAn AWS IAM access key pair is required to interact with AWS Lambda. Make sure that the key pair you generate in AWS has proper permissions to the Lambda functions you want to access. Read more about AWS Lambda permissions in the AWS docs.
Input | Notes | Example |
---|---|---|
Input Access Key ID string / Required | Notes An AWS IAM Access Key ID | Example AKIAIOSFODNN7EXAMPLE |
Input Secret Access Key password / Required | Notes An AWS IAM Secret Access Key | Example wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY |
#
Actions#
InvokeInvoke an AWS Lambda function | key: invoke
Input | Default | Notes | Example |
---|---|---|---|
Input AWS Region string / Required | Default us-east-1 | Notes AWS provides services in multiple regions, like us-west-2 or eu-east-1. | Example us-east-1 |
Input Connection connection / Required | Default | Notes | Example |
Input Function Name or ARN string / Required | Default | Notes This can be a function name (my-function), name with alias (my-function:v1), or function ARN (arn:aws:lambda:us-west-2:123456789012:function:my-function). | Example my-function |
Input Payload string | Default | Notes The payload to send the lambda function. This can be a JSON string or object that can be serialized into JSON. | Example {"firstKey":"firstValue","secondKey":"secondValue"} |
Input Invoke Type string / Required | Default RequestResponse | Notes RequestResponse (default) - Invoke the function synchronously. Event - Invoke the function asynchronously. DryRun - Validate parameter values and verify that the user or role has permission to invoke the function. | Example |
#
List FunctionList Information and metadata about all AWS Lambda functions | key: listFunctions
Input | Default | Notes | Example |
---|---|---|---|
Input Connection connection / Required | Default | Notes | Example |
Input AWS Region string / Required | Default us-east-1 | Notes AWS provides services in multiple regions, like us-west-2 or eu-east-1. | Example us-east-1 |
Input Marker string | Default | Notes Specify the pagination token that's returned by a previous request to retrieve the next page of results | Example lslTXFcbLQKkb0vP9Kgh5hy0Y0OnC7Z9ZPHPwPmMnxSk3eiDRMkct7D8E |
Input Max Items string | Default | Notes Provide an integer value for the maximum amount of items that will be returned. Provide a value from 1 to 50. | Example 20 |