The name of a function to execute and its parameters.

interface FunctionExecutionTrigger {
    functionName: string;
    params: ExecuteTriggerParams;
}

Properties

Properties

functionName: string

The name of the function to execute.

The parameters of the function to execute.