auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps) => {
}
this.arr = [
{ name: "Luke"},
{ name: "Leia", title: "General" },
]
for (const payload of this.arr) {
$send.sql({
table: "star_wars_characters",
payload,
})
}