public static interface Computer.Builder extends CopyableBuilder<Computer.Builder,Computer>
Modifier and Type | Method and Description |
---|---|
Computer.Builder |
computerAttributes(Attribute... computerAttributes)
An array of Attribute objects containing the LDAP attributes that belong to the computer account.
|
Computer.Builder |
computerAttributes(Collection<Attribute> computerAttributes)
An array of Attribute objects containing the LDAP attributes that belong to the computer account.
|
Computer.Builder |
computerAttributes(Consumer<Attribute.Builder>... computerAttributes)
An array of Attribute objects containing the LDAP attributes that belong to the computer account.
|
Computer.Builder |
computerId(String computerId)
The identifier of the computer.
|
Computer.Builder |
computerName(String computerName)
The computer name.
|
copy
applyMutation, build
Computer.Builder computerId(String computerId)
The identifier of the computer.
computerId
- The identifier of the computer.Computer.Builder computerName(String computerName)
The computer name.
computerName
- The computer name.Computer.Builder computerAttributes(Collection<Attribute> computerAttributes)
An array of Attribute objects containing the LDAP attributes that belong to the computer account.
computerAttributes
- An array of Attribute objects containing the LDAP attributes that belong to the computer
account.Computer.Builder computerAttributes(Attribute... computerAttributes)
An array of Attribute objects containing the LDAP attributes that belong to the computer account.
computerAttributes
- An array of Attribute objects containing the LDAP attributes that belong to the computer
account.Computer.Builder computerAttributes(Consumer<Attribute.Builder>... computerAttributes)
An array of Attribute objects containing the LDAP attributes that belong to the computer account.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #computerAttributes(List)
.computerAttributes
- a consumer that will call methods on List.Builder
#computerAttributes(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.