Method: Aws::SecurityHub::Types::PatchSummary#missing_count

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

#missing_countInteger

The number of patches that are part of the compliance standard but are not installed. The count includes patches that failed to install.

The value can be an integer from ‘0` to `100000`.

Returns:

  • (Integer)


26808
26809
26810
26811
26812
26813
26814
26815
26816
26817
26818
26819
26820
26821
26822
# File 'lib/aws-sdk-securityhub/types.rb', line 26808

class PatchSummary < Struct.new(
  :id,
  :installed_count,
  :missing_count,
  :failed_count,
  :installed_other_count,
  :installed_rejected_count,
  :installed_pending_reboot,
  :operation_start_time,
  :operation_end_time,
  :reboot_option,
  :operation)
  SENSITIVE = []
  include Aws::Structure
end