Interface AwsLambdaNodeParameters

Source
interface AwsLambdaNodeParameters {
    function?: string;
    invocationType?: "RequestResponse" | "Event";
    operation?: "invoke";
    payload?: string;
    qualifier?: string;
}

Properties§

Source§

readonly function?: string

The function you want to invoke. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getFunctions"}

Source§

readonly invocationType?: "RequestResponse" | "Event"

Specify if the workflow should wait for the function to return the results Default: "RequestResponse"

Source§

readonly operation?: "invoke"

Default: "invoke"

Source§

readonly payload?: string

The JSON that you want to provide to your Lambda function as input

Source§

readonly qualifier?: string

Specify a version or alias to invoke a published version of the function Default: "$LATEST"