1 let response = {
2 statusCode: responseCode,
3 headers: {
4 "x-custom-header" : "my custom header value"
5 },
6 body: JSON.stringify(responseBody)
7 };
8 console.log("response: " + JSON.stringify(response))
9 return response;