Class: Aws::DirectoryService::Types::Computer
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::Computer
- Defined in:
- gems/aws-sdk-directoryservice/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.
808 809 810 811 812 813 814 |
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 808 class Computer < Struct.new( :computer_id, :computer_name, :computer_attributes) SENSITIVE = [] include Aws::Structure end |