AWS Security ChangesHomeSearch

AWS code-library documentation change

Service: code-library · 2025-06-28 · Documentation low

File: code-library/latest/ug/ssm_example_ssm_GetParameterHistory_section.md

Summary

Added PowerShell V5 examples for parameter history tracking

Security assessment

Demonstrates standard parameter auditing features without specific security enhancements

Diff

diff --git a/code-library/latest/ug/ssm_example_ssm_GetParameterHistory_section.md b/code-library/latest/ug/ssm_example_ssm_GetParameterHistory_section.md
index acc37c53b..d784e3887 100644
--- a//code-library/latest/ug/ssm_example_ssm_GetParameterHistory_section.md
+++ b//code-library/latest/ug/ssm_example_ssm_GetParameterHistory_section.md
@@ -104,0 +105,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)_. 
+
+
+
+