Home > other >  How export logs from AWS Lambda to S3 bucket without CloudWatch?
How export logs from AWS Lambda to S3 bucket without CloudWatch?

Time:07-10

How I can send or export logs from my AWS Lambda function to S3 without using by CloudWatch?

Is there another option?

CodePudding user response:

This AWS Sample shows you have to use a Lambda extension to send logs to S3. But there is currently no way to stop logs from going to CloudWatch.

  • Related