AWS Security ChangesHomeSearch

AWS redshift documentation change

Service: redshift · 2025-11-25 · Documentation low

File: redshift/latest/mgmt/generating-iam-credentials-steps.md

Summary

Adjusted IAM policy syntax to use arrays for Resource fields in credential generation examples

Security assessment

Syntax correction in policy examples improves clarity but does not introduce or address security features/vulnerabilities.

Diff

diff --git a/redshift/latest/mgmt/generating-iam-credentials-steps.md b/redshift/latest/mgmt/generating-iam-credentials-steps.md
index f3ac6443a..633edb044 100644
--- a//redshift/latest/mgmt/generating-iam-credentials-steps.md
+++ b//redshift/latest/mgmt/generating-iam-credentials-steps.md
@@ -103,6 +102,0 @@ Your SQL client needs authorization to call the the ` GetClusterCredentialsWithI
-JSON
-    
-
-****
-    
-    
@@ -116 +110,3 @@ JSON
-    			"Resource": "arn:aws:redshift:us-east-1:123456789012:dbname:testcluster/testdatabase"
+                "Resource": [
+                    "arn:aws:redshift:us-east-1:123456789012:dbname:testcluster/testdatabase"
+                ]
@@ -122 +118 @@ JSON
-    			"Resource": "arn:aws:redshift:us-east-1:123456789012:dbname:examplecluster/*"
+                "Resource": "arn:aws:redshift:us-east-1:123456789012:dbname:examplecluster/*",