Class: Aws::SSM::Types::InventoryFilter

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

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The name of the filter key.

Returns:

  • (String)


7752
7753
7754
7755
7756
7757
# File 'lib/aws-sdk-ssm/types.rb', line 7752

class InventoryFilter < Struct.new(
  :key,
  :values,
  :type)
  include Aws::Structure
end

#typeString

The type of filter. Valid values include the following: “Equal”|“NotEqual”|“BeginWith”|“LessThan”|“GreaterThan”

Returns:

  • (String)


7752
7753
7754
7755
7756
7757
# File 'lib/aws-sdk-ssm/types.rb', line 7752

class InventoryFilter < Struct.new(
  :key,
  :values,
  :type)
  include Aws::Structure
end

#valuesArray<String>

Inventory filter values. Example: inventory filter where instance IDs are specified as values Key=AWS:InstanceInformation.InstanceId,Values= i-a12b3c4d5e6g, i-1a2b3c4d5e6,Type=Equal

Returns:

  • (Array<String>)


7752
7753
7754
7755
7756
7757
# File 'lib/aws-sdk-ssm/types.rb', line 7752

class InventoryFilter < Struct.new(
  :key,
  :values,
  :type)
  include Aws::Structure
end