Description Usage Arguments Value Request syntax
View source: R/ssm_operations.R
Describes a specific delete inventory operation.
1 | ssm_describe_inventory_deletions(DeletionId, NextToken, MaxResults)
|
DeletionId |
Specify the delete inventory ID for which you want information. This ID
was returned by the |
NextToken |
A token to start the list. Use this token to get the next set of results. |
MaxResults |
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. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 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"
)
|
1 2 3 4 5 | svc$describe_inventory_deletions(
DeletionId = "string",
NextToken = "string",
MaxResults = 123
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.