turbot/aws_insights

Query: backup_plan_input

Usage

powerpipe query aws_insights.query.backup_plan_input

Steampipe Tables

SQL

select
title as label,
arn as value,
json_build_object(
'account_id', account_id,
'region', region
) as tags
from
aws_backup_plan
where
deletion_date is null
order by
arn;