Class: Aws::SSM::Types::ListInventoryEntriesRequest

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 ListInventoryEntriesRequest data as a hash:

{
  instance_id: "InstanceId", # required
  type_name: "InventoryItemTypeName", # required
  filters: [
    {
      key: "InventoryFilterKey", # required
      values: ["InventoryFilterValue"], # required
      type: "Equal", # accepts Equal, NotEqual, BeginWith, LessThan, GreaterThan, Exists
    },
  ],
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::InventoryFilter>

One or more filters. Use a filter to return a more specific list of results.

Returns:



8565
8566
8567
8568
8569
8570
8571
8572
# File 'lib/aws-sdk-ssm/types.rb', line 8565

class ListInventoryEntriesRequest < Struct.new(
  :instance_id,
  :type_name,
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#instance_idString

The instance ID for which you want inventory information.

Returns:

  • (String)


8565
8566
8567
8568
8569
8570
8571
8572
# File 'lib/aws-sdk-ssm/types.rb', line 8565

class ListInventoryEntriesRequest < Struct.new(
  :instance_id,
  :type_name,
  :filters,
  :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)


8565
8566
8567
8568
8569
8570
8571
8572
# File 'lib/aws-sdk-ssm/types.rb', line 8565

class ListInventoryEntriesRequest < Struct.new(
  :instance_id,
  :type_name,
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

The token for the next set of items to return. (You received this token from a previous call.)

Returns:

  • (String)


8565
8566
8567
8568
8569
8570
8571
8572
# File 'lib/aws-sdk-ssm/types.rb', line 8565

class ListInventoryEntriesRequest < Struct.new(
  :instance_id,
  :type_name,
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#type_nameString

The type of inventory item for which you want information.

Returns:

  • (String)


8565
8566
8567
8568
8569
8570
8571
8572
# File 'lib/aws-sdk-ssm/types.rb', line 8565

class ListInventoryEntriesRequest < Struct.new(
  :instance_id,
  :type_name,
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end