搭配使用 ListInventoryEntries
與 CLI
下列程式碼範例示範如何使用 ListInventoryEntries
。
- CLI
-
- AWS CLI
-
範例 1:檢視執行個體的特定庫存類型項目
以下
list-inventory-entries
範例列出了特定執行個體上 AWS:Application 庫存類型的庫存項目。aws ssm list-inventory-entries \ --instance-id
"i-1234567890abcdef0"
\ --type-name"AWS:Application"
輸出:
{ "TypeName": "AWS:Application", "InstanceId": "i-1234567890abcdef0", "SchemaVersion": "1.1", "CaptureTime": "2019-02-15T12:17:55Z", "Entries": [ { "Architecture": "i386", "Name": "Amazon SSM Agent", "PackageId": "{88a60be2-89a1-4df8-812a-80863c2a2b68}", "Publisher": "Amazon Web Services", "Version": "2.3.274.0" }, { "Architecture": "x86_64", "InstalledTime": "2018-05-03T13:42:34Z", "Name": "AmazonCloudWatchAgent", "Publisher": "", "Version": "1.200442.0" } ] }
範例 2:檢視指派給執行個體的自訂庫存項目
下列
list-inventory-entries
範例列出了指派給執行個體的自訂庫存項目。aws ssm list-inventory-entries \ --instance-id
"i-1234567890abcdef0"
\ --type-name"Custom:RackInfo"
輸出:
{ "TypeName": "Custom:RackInfo", "InstanceId": "i-1234567890abcdef0", "SchemaVersion": "1.0", "CaptureTime": "2021-05-22T10:01:01Z", "Entries": [ { "RackLocation": "Bay B/Row C/Rack D/Shelf E" } ] }
-
如需 API 詳細資訊,請參閱《AWS CLI 命令參考》中的 ListInventoryEntries
。
-
- PowerShell
-
- Tools for PowerShell
-
範例 1:此範例列出了執行個體的所有自訂庫存項目。
Get-SSMInventoryEntriesList -InstanceId "i-0cb2b964d3e14fd9f" -TypeName "Custom:RackInfo"
輸出:
CaptureTime : 2016-08-22T10:01:01Z Entries : {Amazon.Runtime.Internal.Util.AlwaysSendDictionary`2[System.String,System.String]} InstanceId : i-0cb2b964d3e14fd9f NextToken : SchemaVersion : 1.0 TypeName : Custom:RackInfo
範例 2:此範例列出了詳細資訊。
(Get-SSMInventoryEntriesList -InstanceId "i-0cb2b964d3e14fd9f" -TypeName "Custom:RackInfo").Entries
輸出:
Key Value --- ----- RackLocation Bay B/Row C/Rack D/Shelf E
-
如需 API 詳細資訊,請參閱《AWS Tools for PowerShell Cmdlet 參考》中的 ListInventoryEntries。
-
如需完整的 AWS SDK 開發人員指南和程式碼範例清單,請參閱透過 AWS SDK 使用此服務。此主題也包含有關入門的資訊和舊版 SDK 的詳細資訊。
ListDocuments
ListResourceComplianceSummaries