diff --git a/ingestion-lambda/src/handler.ts b/ingestion-lambda/src/handler.ts index 5420632c..90fc9df5 100644 --- a/ingestion-lambda/src/handler.ts +++ b/ingestion-lambda/src/handler.ts @@ -16,6 +16,9 @@ export const main = async (event: SQSEvent): Promise => { })); const responses = await Promise.all( eventBodies.map(({ sqsMessageId: messageId, snsMessage }) => { + console.log(Object.keys(snsMessage)); + console.log(JSON.stringify(snsMessage)); + // @ts-expect-error - the lambda types seem to be incorrect const { Message, messageAttributes } = snsMessage;