Defines actions to be executed as Lambda functions.
Description
The LambdaAction class is used to define actions to be executed as Lambda functions.
Fields
Cmd
Command to call the action
public
string Cmd { get; set; }
Schema
Schema to validate action parameters
public
Schema Schema { get; set; }
Action
Action to be executed
public
Func<string, Task<string>> Action { get; set; }