Method: Aws::SSM::Types::InstanceProperty#instance_id
- Defined in:
- lib/aws-sdk-ssm/types.rb
#instance_id ⇒ String
The ID of the managed node.
10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 |
# File 'lib/aws-sdk-ssm/types.rb', line 10571 class InstanceProperty < Struct.new( :name, :instance_id, :instance_type, :instance_role, :key_name, :instance_state, :architecture, :ip_address, :launch_time, :ping_status, :last_ping_date_time, :agent_version, :platform_type, :platform_name, :platform_version, :activation_id, :iam_role, :registration_date, :resource_type, :computer_name, :association_status, :last_association_execution_date, :last_successful_association_execution_date, :association_overview, :source_id, :source_type) SENSITIVE = [:ip_address] include Aws::Structure end |