interface AwsLambdaNodeParameters {
authentication?: "iam" | "assumeRole";
function?: string;
invocationType?: "RequestResponse" | "Event";
operation?: "invoke";
payload?: string;
qualifier?: string;
}
Properties§
§
§
§
§
§
§
readonly authentication?: "iam" | "assumeRole"
readonly function?: string
The function you want to invoke. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getFunctions"}
readonly invocation Type?: "RequestResponse" | "Event"
Specify if the workflow should wait for the function to return the results Default: "RequestResponse"
readonly operation?: "invoke"
Default: "invoke"
readonly payload?: string
The JSON that you want to provide to your Lambda function as input
readonly qualifier?: string
Specify a version or alias to invoke a published version of the function Default: "$LATEST"
Default: "iam"