Class: Aws::DirectoryService::Types::Computer
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::Computer
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directoryservice/types.rb
Overview
Contains information about a computer account in a directory.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#computer_attributes ⇒ Array<Types::Attribute>
An array of Attribute objects containing the LDAP attributes that belong to the computer account.
-
#computer_id ⇒ String
The identifier of the computer.
-
#computer_name ⇒ String
The computer name.
Instance Attribute Details
#computer_attributes ⇒ Array<Types::Attribute>
An array of Attribute objects containing the LDAP attributes that belong to the computer account.
514 515 516 517 518 519 520 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 514 class Computer < Struct.new( :computer_id, :computer_name, :computer_attributes) SENSITIVE = [] include Aws::Structure end |