AWS Lambda

Overview

The AWS Lambda plugin provides the integrations to invoke and list the available functions in the AWS Lambda service in the AWS instance.

To connect with the AWS instance, the connected system must be authenticated with the Access Key ID and the Secret Access Key.

Key Features & Functionality

  • Invoke Function - invoke the specified function in the AWS Lambda instance.
  • List Available Functions - lists all the available functions in the Lambda instance.
Anonymous
Parents Comment
  • Hello  

    connected system is pointed to our aws environment in us-east-2

    Operation: invoke function

    function name: name of our function (built using a constants and concatenation)

    inputs:

    a!toJson({
      "input1": ri!input1,
      "input2": {ri!input2},
      "input3": ri!input3,
      "input4": ri!input4,
      "input5": ri!input5,
      "input6": ri!input6,
      "input7" : {ri!input7}
    }
    )

    execution timeout: 600

    Execution gets kicked off just fine and runs just fine, the node just dies early with the above error

Children