4

In AWS it is indicated that there is support to use Cloudtrail to track events in DynamoDB in the link here.

However, in the instructions, there is no option to pick DynamoDB anywhere (only S3 and Lambda options are available) so I am looking for any instructions anywhere on how to track DynamoDb events. Specifically I want to know when a table has been deleted.

Has anyone had any luck? Thanks!

andre
  • 1,660
  • 3
  • 19
  • 31

1 Answers1

0

The AWS Console displays only S3 and Lambda, since at the moment only those two services are supported for logging data events. E.g. PutObject etc.

DeleteTable is a management event, and is listed in the documentation you posted. If you configure your Trail to log all management events, all AWS services you use, including DynamoDB, will be logging these management events.

Just create a new trail, and include all management events. Then in your Trail's event history you will find the events like below.

enter image description here

Ignas
  • 4,092
  • 17
  • 28