Class: Aws::SSM::Types::InventoryGroup

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

{
  name: "InventoryGroupName", # required
  filters: [ # required
    {
      key: "InventoryFilterKey", # required
      values: ["InventoryFilterValue"], # required
      type: "Equal", # accepts Equal, NotEqual, BeginWith, LessThan, GreaterThan, Exists
    },
  ],
}

A user-defined set of one or more filters on which to aggregate inventory data. Groups return a count of resources that match and don’t match the specified criteria.

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::InventoryFilter>

Filters define the criteria for the group. The ‘matchingCount` field displays the number of resources that match the criteria. The `notMatchingCount` field displays the number of resources that don’t match the criteria.

Returns:



9500
9501
9502
9503
9504
# File 'lib/aws-sdk-ssm/types.rb', line 9500

class InventoryGroup < Struct.new(
  :name,
  :filters)
  include Aws::Structure
end

#nameString

The name of the group.

Returns:

  • (String)


9500
9501
9502
9503
9504
# File 'lib/aws-sdk-ssm/types.rb', line 9500

class InventoryGroup < Struct.new(
  :name,
  :filters)
  include Aws::Structure
end