Return a list of inventory type names for the account, or return a list of attribute names for a specific Inventory item type.
ssm_get_inventory_schema(TypeName, NextToken, MaxResults, Aggregator,
SubType)
A list with the following syntax:
list(
Schemas = list(
list(
TypeName = "string",
Version = "string",
Attributes = list(
list(
Name = "string",
DataType = "string"|"number"
)
),
DisplayName = "string"
)
),
NextToken = "string"
)
The type of inventory item to return.
The token for the next set of items to return. (You received this token from a previous call.)
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
Returns inventory schemas that support aggregation. For example, this
call returns the AWS:InstanceInformation
type, because it supports
aggregation based on the PlatformName
, PlatformType
, and
PlatformVersion
attributes.
Returns the sub-type schema for a specified inventory type.
svc$get_inventory_schema(
TypeName = "string",
NextToken = "string",
MaxResults = 123,
Aggregator = TRUE|FALSE,
SubType = TRUE|FALSE
)