turbot/aws_insights

Query: rds_db_cluster_snapshots_for_rds_db_cluster

Usage

powerpipe query aws_insights.query.rds_db_cluster_snapshots_for_rds_db_cluster

SQL

select
s.arn as snapshot_arn
from
aws_rds_db_cluster as c
join aws_rds_db_cluster_snapshot as s on s.db_cluster_identifier = c.db_cluster_identifier
where
c.arn = $1;