Lambdaを使ってEventbridgeで連携されてきたEventをTeamsに連携する際のTipsをメモしておく。
・event.json.dumps()を使うと日本語表記が\uXXXXになる問題
解決法:
ensure_ascii=Falseを付けること
関連する参考ページ
https://dev.classmethod.jp/articles/aws-lambda-json-output/
https://dev.classmethod.jp/articles/eventbridge-to-microsoftteams/
https://dev.classmethod.jp/articles/aws-lambda-multiline-logging/
https://dev.classmethod.jp/articles/step-functions-to-sns/