turbot/aws_insights

Query: dynamodb_backups_for_dynamodb_table

Usage

powerpipe query aws_insights.query.dynamodb_backups_for_dynamodb_table

Steampipe Tables

SQL

select
b.arn as dbynamodb_backup_arn
from
aws_dynamodb_backup as b
where
b.region = split_part($1, ':', 4)
and b.account_id = split_part($1, ':', 5)
and b.table_arn = $1;