AWS Security ChangesHomeSearch

AWS IAM documentation change

Service: IAM · 2025-06-25 · Documentation medium

File: IAM/latest/UserGuide/iam_example_iam_CreateSAMLProvider_section.md

Summary

Added PowerShell V5 example for SAML provider creation

Security assessment

Documents SAML federation setup which is security-related but doesn't fix any vulnerability

Diff

diff --git a/IAM/latest/UserGuide/iam_example_iam_CreateSAMLProvider_section.md b/IAM/latest/UserGuide/iam_example_iam_CreateSAMLProvider_section.md
index b4bf74568..53d4a5ac2 100644
--- a//IAM/latest/UserGuide/iam_example_iam_CreateSAMLProvider_section.md
+++ b//IAM/latest/UserGuide/iam_example_iam_CreateSAMLProvider_section.md
@@ -112,0 +113,19 @@ PowerShell
+**Tools for PowerShell V5**
+    
+
+**Example 1: This example creates a new SAML provider entity in IAM. It is named`MySAMLProvider` and is described by the SAML metadata document found in the file `SAMLMetaData.xml`, which was separately downloaded from the SAML service provider's web site.**
+    
+    
+    New-IAMSAMLProvider -Name MySAMLProvider -SAMLMetadataDocument (Get-Content -Raw SAMLMetaData.xml)
+    
+
+**Output:**
+    
+    
+    arn:aws:iam::123456789012:saml-provider/MySAMLProvider
+
+  * For API details, see [CreateSAMLProvider](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. 
+
+
+
+