Add IAM Role to Redshift Cluster in AWS CDK
Summary A CDK stack attempted to attach a new IAM role to an existing Redshift cluster using Cluster.from_cluster_attributes(). The operation failed because imported Redshift cluster constructs in CDK are read‑only references and do not expose mutating methods such as add_iam_role. Root Cause The failure stems from how AWS CDK models resources: from_cluster_attributes() returns a lightweight … Read more