turbot/aws_insights

Query: redshift_clusters_for_redshift_snapshot

Usage

powerpipe query aws_insights.query.redshift_clusters_for_redshift_snapshot

SQL

select
c.arn as redshift_cluster_arn
from
aws_redshift_snapshot as s,
aws_redshift_cluster as c
where
s.cluster_identifier = c.cluster_identifier
and s.akas :: text = $1;