List Resource Inventory
licensemanager_list_resource_inventory | R Documentation |
Lists resources managed using Systems Manager inventory¶
Description¶
Lists resources managed using Systems Manager inventory.
Usage¶
licensemanager_list_resource_inventory(MaxResults, NextToken, Filters)
Arguments¶
MaxResults |
Maximum number of results to return in a single call. |
NextToken |
Token for the next set of results. |
Filters |
Filters to scope the results. The following filters and logical operators are supported:
|
Value¶
A list with the following syntax:
list(
ResourceInventoryList = list(
list(
ResourceId = "string",
ResourceType = "EC2_INSTANCE"|"EC2_HOST"|"EC2_AMI"|"RDS"|"SYSTEMS_MANAGER_MANAGED_INSTANCE",
ResourceArn = "string",
Platform = "string",
PlatformVersion = "string",
ResourceOwningAccountId = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_resource_inventory(
MaxResults = 123,
NextToken = "string",
Filters = list(
list(
Name = "string",
Condition = "EQUALS"|"NOT_EQUALS"|"BEGINS_WITH"|"CONTAINS",
Value = "string"
)
)
)