Skip to content

Describe Inventory Deletions

ssm_describe_inventory_deletions R Documentation

Describes a specific delete inventory operation

Description

Describes a specific delete inventory operation.

Usage

ssm_describe_inventory_deletions(DeletionId, NextToken, MaxResults)

Arguments

DeletionId

Specify the delete inventory ID for which you want information. This ID was returned by the delete_inventory operation.

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.

Value

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"
)

Request syntax

svc$describe_inventory_deletions(
  DeletionId = "string",
  NextToken = "string",
  MaxResults = 123
)