AWS Security ChangesHomeSearch

AWS systems-manager documentation change

Service: systems-manager · 2025-06-25 · Documentation low

File: systems-manager/latest/userguide/example_ssm_GetParameterHistory_section.md

Summary

Added parameter history tracking example

Security assessment

Shows historical parameter tracking without addressing security aspects like secret rotation or access monitoring.

Diff

diff --git a/systems-manager/latest/userguide/example_ssm_GetParameterHistory_section.md b/systems-manager/latest/userguide/example_ssm_GetParameterHistory_section.md
index 02d0066f2..2c879ebad 100644
--- a//systems-manager/latest/userguide/example_ssm_GetParameterHistory_section.md
+++ b//systems-manager/latest/userguide/example_ssm_GetParameterHistory_section.md
@@ -102,0 +103,25 @@ PowerShell
+**Tools for PowerShell V5**
+    
+
+**Example 1: This example lists the value history for a parameter.**
+    
+    
+    Get-SSMParameterHistory -Name "Welcome"
+    
+
+**Output:**
+    
+    
+    Description      :
+    KeyId            :
+    LastModifiedDate : 3/3/2017 6:55:25 PM
+    LastModifiedUser : arn:aws:iam::123456789012:user/admin
+    Name             : Welcome
+    Type             : String
+    Value            : helloWorld
+
+  * For API details, see [GetParameterHistory](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. 
+
+
+
+