Class: Aws::SSM::Types::DescribeInventoryDeletionsRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ssm/types.rb

Overview

Note:

When making an API call, you may pass DescribeInventoryDeletionsRequest data as a hash:

{
  deletion_id: "InventoryDeletionId",
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#deletion_idString

Specify the delete inventory ID for which you want information. This ID was returned by the ‘DeleteInventory` action.

Returns:

  • (String)


4212
4213
4214
4215
4216
4217
# File 'lib/aws-sdk-ssm/types.rb', line 4212

class DescribeInventoryDeletionsRequest < Struct.new(
  :deletion_id,
  :next_token,
  :max_results)
  include Aws::Structure
end

#max_resultsInteger

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:

  • (Integer)


4212
4213
4214
4215
4216
4217
# File 'lib/aws-sdk-ssm/types.rb', line 4212

class DescribeInventoryDeletionsRequest < Struct.new(
  :deletion_id,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

A token to start the list. Use this token to get the next set of results.

Returns:

  • (String)


4212
4213
4214
4215
4216
4217
# File 'lib/aws-sdk-ssm/types.rb', line 4212

class DescribeInventoryDeletionsRequest < Struct.new(
  :deletion_id,
  :next_token,
  :max_results)
  include Aws::Structure
end