auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps) => {
}
let jwt = $event.headers['x-jwt-assertion']
console.log(jwt)
let decoded_jwt = Buffer(jwt, 'base64');
$event.output = decoded_jwt.toString('ascii')
console.log($event.output)