CLI で ListInventoryEntries
を使用する
以下のコード例は、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 で Systems Manager を使用する」を参照してください。このトピックには、使用開始方法に関する情報と、以前の SDK バージョンの詳細も含まれています。
ListDocuments
ListResourceComplianceSummaries