Is there a way to list log streams in each of the aws log groups? I need to get the lists of all log streams in every log group and check the Last event time for cleanup purposes.
Best Regards, Ell
Yes, you can use describe-log-streams.
For example: aws logs describe-log-streams --log-group-name my-logs
You can first use describe-log-groups to get a list of your log groups.