Method: Aws::SSM::Types::InstancePatchState#instance_id
- Defined in:
- lib/aws-sdk-ssm/types.rb
#instance_id ⇒ String
The ID of the managed node the high-level patch compliance information was collected for.
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 |