libZSservicesZSamazonka-ssmZSamazonka-ssm
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SSM.Types.InstancePatchStateFilter

Description

 
Synopsis

Documentation

data InstancePatchStateFilter Source #

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

Example: To filter for all instances in a patch group having more than three patches with a FailedCount status, use the following for the filter:

  • Value for Key: FailedCount
  • Value for Type: GreaterThan
  • Value for Values: 3

See: newInstancePatchStateFilter smart constructor.

Constructors

InstancePatchStateFilter' 

Fields

  • key :: Text

    The key for the filter. Supported values include the following:

    • InstalledCount
    • InstalledOtherCount
    • InstalledPendingRebootCount
    • InstalledRejectedCount
    • MissingCount
    • FailedCount
    • UnreportedNotApplicableCount
    • NotApplicableCount
  • values :: NonEmpty Text

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

  • type' :: InstancePatchStateOperatorType

    The type of comparison that should be performed for the value.

Instances

Instances details
Eq InstancePatchStateFilter Source # 
Instance details

Defined in Amazonka.SSM.Types.InstancePatchStateFilter

Read InstancePatchStateFilter Source # 
Instance details

Defined in Amazonka.SSM.Types.InstancePatchStateFilter

Show InstancePatchStateFilter Source # 
Instance details

Defined in Amazonka.SSM.Types.InstancePatchStateFilter

Generic InstancePatchStateFilter Source # 
Instance details

Defined in Amazonka.SSM.Types.InstancePatchStateFilter

Associated Types

type Rep InstancePatchStateFilter :: Type -> Type #

NFData InstancePatchStateFilter Source # 
Instance details

Defined in Amazonka.SSM.Types.InstancePatchStateFilter

Hashable InstancePatchStateFilter Source # 
Instance details

Defined in Amazonka.SSM.Types.InstancePatchStateFilter

ToJSON InstancePatchStateFilter Source # 
Instance details

Defined in Amazonka.SSM.Types.InstancePatchStateFilter

type Rep InstancePatchStateFilter Source # 
Instance details

Defined in Amazonka.SSM.Types.InstancePatchStateFilter

type Rep InstancePatchStateFilter = D1 ('MetaData "InstancePatchStateFilter" "Amazonka.SSM.Types.InstancePatchStateFilter" "libZSservicesZSamazonka-ssmZSamazonka-ssm" 'False) (C1 ('MetaCons "InstancePatchStateFilter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "values") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text)) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 InstancePatchStateOperatorType))))

newInstancePatchStateFilter Source #

Create a value of InstancePatchStateFilter with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:key:InstancePatchStateFilter', instancePatchStateFilter_key - The key for the filter. Supported values include the following:

  • InstalledCount
  • InstalledOtherCount
  • InstalledPendingRebootCount
  • InstalledRejectedCount
  • MissingCount
  • FailedCount
  • UnreportedNotApplicableCount
  • NotApplicableCount

$sel:values:InstancePatchStateFilter', instancePatchStateFilter_values - The value for the filter. Must be an integer greater than or equal to 0.

$sel:type':InstancePatchStateFilter', instancePatchStateFilter_type - The type of comparison that should be performed for the value.

instancePatchStateFilter_key :: Lens' InstancePatchStateFilter Text Source #

The key for the filter. Supported values include the following:

  • InstalledCount
  • InstalledOtherCount
  • InstalledPendingRebootCount
  • InstalledRejectedCount
  • MissingCount
  • FailedCount
  • UnreportedNotApplicableCount
  • NotApplicableCount

instancePatchStateFilter_values :: Lens' InstancePatchStateFilter (NonEmpty Text) Source #

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

instancePatchStateFilter_type :: Lens' InstancePatchStateFilter InstancePatchStateOperatorType Source #

The type of comparison that should be performed for the value.