Method: Aws::SecurityHub::Types::PatchSummary#installed_pending_reboot
- Defined in:
- lib/aws-sdk-securityhub/types.rb
#installed_pending_reboot ⇒ Integer
The number of patches that were applied, but that require the instance to be rebooted in order to be marked as installed.
The value can be an integer from ‘0` to `100000`.
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 |