Untitled
Anonymous
plain_text
06/26/2024 3:31 AM
508 B
22
Indexable
console.log('Loading function');
exports.handler = async (event, context) => {
//console.log('Received event:', JSON.stringify(event, null, 2));
console.log('value1 =', event.key1);
console.log('value2 =', event.key2);
console.log('value3 =', event.key3);
return event.key1; // Echo back the first key value
// throw new Error('Something went wrong');
};
Editor is loading...
Leave a Comment