Ci sono altri AWS SDK esempi disponibili nel repository AWS Doc SDK Examples
Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.
Utilizzare GetParameterHistory
con un CLI
I seguenti esempi di codice mostrano come utilizzareGetParameterHistory
.
- CLI
-
- AWS CLI
-
Per ottenere una cronologia dei valori per un parametro
L'
get-parameter-history
esempio seguente elenca la cronologia delle modifiche per il parametro specificato, incluso il relativo valore.aws ssm get-parameter-history \ --name
"MyStringParameter"
Output:
{ "Parameters": [ { "Name": "MyStringParameter", "Type": "String", "LastModifiedDate": 1582154711.976, "LastModifiedUser": "arn:aws:iam::111222333444:user/Mary-Major", "Description": "This is the first version of my String parameter", "Value": "Veni", "Version": 1, "Labels": [], "Tier": "Standard", "Policies": [] }, { "Name": "MyStringParameter", "Type": "String", "LastModifiedDate": 1582156093.471, "LastModifiedUser": "arn:aws:iam::111222333444:user/Mary-Major", "Description": "This is the second version of my String parameter", "Value": "Vidi", "Version": 2, "Labels": [], "Tier": "Standard", "Policies": [] }, { "Name": "MyStringParameter", "Type": "String", "LastModifiedDate": 1582156117.545, "LastModifiedUser": "arn:aws:iam::111222333444:user/Mary-Major", "Description": "This is the third version of my String parameter", "Value": "Vici", "Version": 3, "Labels": [], "Tier": "Standard", "Policies": [] } ] }
Per ulteriori informazioni, vedere Utilizzo delle versioni dei parametri nella Guida per l'utente di AWS Systems Manager.
-
Per API i dettagli, vedere GetParameterHistory
in AWS CLI Command Reference.
-
- PowerShell
-
- Strumenti per PowerShell
-
Esempio 1: questo esempio elenca la cronologia dei valori di un parametro.
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
-
Per API i dettagli, vedere GetParameterHistoryin AWS Tools for PowerShell Cmdlet Reference.
-