AWS Security ChangesHomeSearch

AWS healthimaging documentation change

Service: healthimaging · 2026-02-16 · Documentation low

File: healthimaging/latest/devguide/getting-started-setting-up.md

Summary

Added an example IAM trust policy JSON snippet allowing the HealthImaging service to assume roles

Security assessment

The change adds documentation about IAM role trust relationships, which is security-related configuration. However, there's no evidence of addressing a specific vulnerability - it's a standard example policy for service access without any security incident context. The policy shows minimal permissions needed for service integration, improving security posture through least privilege guidance.

Diff

diff --git a/healthimaging/latest/devguide/getting-started-setting-up.md b/healthimaging/latest/devguide/getting-started-setting-up.md
index 60330c685..8b815e3f1 100644
--- a//healthimaging/latest/devguide/getting-started-setting-up.md
+++ b//healthimaging/latest/devguide/getting-started-setting-up.md
@@ -216,0 +217,20 @@ The `Condition` block in this trust policy helps prevent the confused deputy pro
+JSON
+    
+
+****
+    
+    
+        {
+      "Version":"2012-10-17",		 	 	 
+      "Statement": [
+        {
+          "Effect": "Allow",
+          "Principal": {
+            "Service": "medical-imaging.amazonaws.com"
+          },
+          "Action": "sts:AssumeRole"
+        }
+      ]
+    }
+    
+