auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps) => {
}
console.log("step 1 ran")
this.skipToStep = 3
auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps) => {
}
if (steps.setCondition.skipToStep === 2) {
console.log("step 2 ran")
// run your code here
}
auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps) => {
}
if (steps.setCondition.skipToStep === 3) {
console.log("step 3 ran")
// run your code here
}