Describes a specific delete inventory operation.
ssm_describe_inventory_deletions(DeletionId, NextToken, MaxResults)
A list with the following syntax:
list(
InventoryDeletions = list(
list(
DeletionId = "string",
TypeName = "string",
DeletionStartTime = as.POSIXct(
"2015-01-01"
),
LastStatus = "InProgress"|"Complete",
LastStatusMessage = "string",
DeletionSummary = list(
TotalCount = 123,
RemainingCount = 123,
SummaryItems = list(
list(
Version = "string",
Count = 123,
RemainingCount = 123
)
)
),
LastStatusUpdateTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Specify the delete inventory ID for which you want information. This ID
was returned by the delete_inventory
action.
A token to start the list. Use this token to get the next set of results.
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.
svc$describe_inventory_deletions(
DeletionId = "string",
NextToken = "string",
MaxResults = 123
)