Class: Aws::SSM::Types::InstancePatchStateFilter

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

{
  key: "InstancePatchStateFilterKey", # required
  values: ["InstancePatchStateFilterValue"], # required
  type: "Equal", # required, accepts Equal, NotEqual, LessThan, GreaterThan
}

Defines a filter used in DescribeInstancePatchStatesForPatchGroup used to scope down the information returned by the API.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key for the filter. Supported values are FailedCount, InstalledCount, InstalledOtherCount, MissingCount and NotApplicableCount.

Returns:

  • (String)


7551
7552
7553
7554
7555
7556
# File 'lib/aws-sdk-ssm/types.rb', line 7551

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

#typeString

The type of comparison that should be performed for the value: Equal, NotEqual, LessThan or GreaterThan.

Returns:

  • (String)


7551
7552
7553
7554
7555
7556
# File 'lib/aws-sdk-ssm/types.rb', line 7551

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

#valuesArray<String>

The value for the filter, must be an integer greater than or equal to 0.

Returns:

  • (Array<String>)


7551
7552
7553
7554
7555
7556
# File 'lib/aws-sdk-ssm/types.rb', line 7551

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