Method: Aws::SSM::Types::InstancePatchState#instance_id

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

#instance_idString

The ID of the managed node the high-level patch compliance information was collected for.

Returns:

  • (String)


10373
10374
10375
10376
10377
10378
10379
10380
10381
10382
10383
10384
10385
10386
10387
10388
10389
10390
10391
10392
10393
10394
10395
10396
10397
10398
10399
# File 'lib/aws-sdk-ssm/types.rb', line 10373

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