AWS IAM documentation change
Summary
Added PowerShell V5 example for updating SAML provider metadata
Security assessment
Critical for maintaining secure federation configurations but no specific vulnerability addressed
Diff
diff --git a/IAM/latest/UserGuide/iam_example_iam_UpdateSamlProvider_section.md b/IAM/latest/UserGuide/iam_example_iam_UpdateSamlProvider_section.md index 8c95df296..317b2ec24 100644 --- a//IAM/latest/UserGuide/iam_example_iam_UpdateSamlProvider_section.md +++ b//IAM/latest/UserGuide/iam_example_iam_UpdateSamlProvider_section.md @@ -55,0 +56,14 @@ PowerShell +**Tools for PowerShell V5** + + +**Example 1: This example updates the SAML provider in IAM whose ARN is`arn:aws:iam::123456789012:saml-provider/SAMLADFS` with a new SAML metadata document from the file `SAMLMetaData.xml`. Note that you must use the `-Raw` switch parameter to successfully process the contents of the JSON file.** + + + Update-IAMSAMLProvider -SAMLProviderArn arn:aws:iam::123456789012:saml-provider/SAMLADFS -SAMLMetadataDocument (Get-Content -Raw SAMLMetaData.xml) + + + * For API details, see [UpdateSamlProvider](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. + + + +