There are more AWS SDK examples available in the AWS Doc SDK Examples
Use ListDocumentVersions
with a CLI
The following code examples show how to use ListDocumentVersions
.
- CLI
-
- AWS CLI
-
To list document versions
The following
list-document-versions
example lists all versions for a Systems Manager document.aws ssm list-document-versions \ --name
"Example"
Output:
{ "DocumentVersions": [ { "Name": "Example", "DocumentVersion": "1", "CreatedDate": 1583257938.266, "IsDefaultVersion": true, "DocumentFormat": "YAML", "Status": "Active" } ] }
For more information, see Sending Commands that Use the Document Version Parameter in the AWS Systems Manager User Guide.
-
For API details, see ListDocumentVersions
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell
-
Example 1: This example lists all the versions for a document.
Get-SSMDocumentVersionList -Name "AWS-UpdateSSMAgent"
Output:
CreatedDate : 6/1/2021 5:19:10 PM DocumentFormat : JSON DocumentVersion : 1 IsDefaultVersion : True Name : AWS-UpdateSSMAgent Status : Active
-
For API details, see ListDocumentVersions in AWS Tools for PowerShell Cmdlet Reference.
-