You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing InstancePatchStateFilter as input to an Aws::Client method, you can use a vanilla 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)

    The key for the filter.

#typeString

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

Possible values:

  • Equal
  • NotEqual
  • LessThan
  • GreaterThan

Returns:

  • (String)

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

#valuesArray<String>

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

Returns:

  • (Array<String>)

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