Class: Aws::SSM::Types::PatchRule

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

{
  patch_filter_group: { # required
    patch_filters: [ # required
      {
        key: "PRODUCT", # required, accepts PRODUCT, CLASSIFICATION, MSRC_SEVERITY, PATCH_ID, SECTION, PRIORITY, SEVERITY
        values: ["PatchFilterValue"], # required
      },
    ],
  },
  compliance_level: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, INFORMATIONAL, UNSPECIFIED
  approve_after_days: 1, # required
  enable_non_security: false,
}

Defines an approval rule for a patch baseline.

Instance Attribute Summary collapse

Instance Attribute Details

#approve_after_daysInteger

The number of days after the release date of each patch matched by the rule that the patch is marked as approved in the patch baseline. For example, a value of ‘7` means that patches are approved seven days after they are released.

Returns:

  • (Integer)


10663
10664
10665
10666
10667
10668
10669
# File 'lib/aws-sdk-ssm/types.rb', line 10663

class PatchRule < Struct.new(
  :patch_filter_group,
  :compliance_level,
  :approve_after_days,
  :enable_non_security)
  include Aws::Structure
end

#compliance_levelString

A compliance severity level for all approved patches in a patch baseline. Valid compliance severity levels include the following: Unspecified, Critical, High, Medium, Low, and Informational.

Returns:

  • (String)


10663
10664
10665
10666
10667
10668
10669
# File 'lib/aws-sdk-ssm/types.rb', line 10663

class PatchRule < Struct.new(
  :patch_filter_group,
  :compliance_level,
  :approve_after_days,
  :enable_non_security)
  include Aws::Structure
end

#enable_non_securityBoolean

For instances identified by the approval rule filters, enables a patch baseline to apply non-security updates available in the specified repository. The default value is ‘false’. Applies to Linux instances only.

Returns:

  • (Boolean)


10663
10664
10665
10666
10667
10668
10669
# File 'lib/aws-sdk-ssm/types.rb', line 10663

class PatchRule < Struct.new(
  :patch_filter_group,
  :compliance_level,
  :approve_after_days,
  :enable_non_security)
  include Aws::Structure
end

#patch_filter_groupTypes::PatchFilterGroup

The patch filter group that defines the criteria for the rule.



10663
10664
10665
10666
10667
10668
10669
# File 'lib/aws-sdk-ssm/types.rb', line 10663

class PatchRule < Struct.new(
  :patch_filter_group,
  :compliance_level,
  :approve_after_days,
  :enable_non_security)
  include Aws::Structure
end