Method: Aws::SSM::Types::InstancePatchState#available_security_update_count

Defined in:
lib/aws-sdk-ssm/types.rb

#available_security_update_countInteger

The number of security-related patches that are available but not approved because they didn’t meet the patch baseline requirements. For example, an updated version of a patch might have been released before the specified auto-approval period was over.

Applies to Windows Server managed nodes only.



10307
10308
10309
10310
10311
10312
10313
10314
10315
10316
10317
10318
10319
10320
10321
10322
10323
10324
10325
10326
10327
10328
10329
10330
10331
10332
10333
# File 'lib/aws-sdk-ssm/types.rb', line 10307

class InstancePatchState < Struct.new(
  :instance_id,
  :patch_group,
  :baseline_id,
  :snapshot_id,
  :install_override_list,
  :owner_information,
  :installed_count,
  :installed_other_count,
  :installed_pending_reboot_count,
  :installed_rejected_count,
  :missing_count,
  :failed_count,
  :unreported_not_applicable_count,
  :not_applicable_count,
  :available_security_update_count,
  :operation_start_time,
  :operation_end_time,
  :operation,
  :last_no_reboot_install_operation_time,
  :reboot_option,
  :critical_non_compliant_count,
  :security_non_compliant_count,
  :other_non_compliant_count)
  SENSITIVE = [:owner_information]
  include Aws::Structure
end