Interface BatchCreateUserRequestItem.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<BatchCreateUserRequestItem.Builder,,BatchCreateUserRequestItem> SdkBuilder<BatchCreateUserRequestItem.Builder,,BatchCreateUserRequestItem> SdkPojo
- Enclosing class:
BatchCreateUserRequestItem
@Mutable
@NotThreadSafe
public static interface BatchCreateUserRequestItem.Builder
extends SdkPojo, CopyableBuilder<BatchCreateUserRequestItem.Builder,BatchCreateUserRequestItem>
-
Method Summary
Modifier and TypeMethodDescriptioncodeValidation(Boolean codeValidation) Indicates whether the user can be verified through a custom invite code.The first name of the user.inviteCode(String inviteCode) A custom invite code for the user.inviteCodeTtl(Integer inviteCodeTtl) The time-to-live for the invite code in days.The last name of the user.securityGroupIds(String... securityGroupIds) A list of security group IDs to which the user should be assigned.securityGroupIds(Collection<String> securityGroupIds) A list of security group IDs to which the user should be assigned.The email address or username for the user.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
firstName
The first name of the user.
- Parameters:
firstName- The first name of the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastName
The last name of the user.
- Parameters:
lastName- The last name of the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
A list of security group IDs to which the user should be assigned.
- Parameters:
securityGroupIds- A list of security group IDs to which the user should be assigned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
A list of security group IDs to which the user should be assigned.
- Parameters:
securityGroupIds- A list of security group IDs to which the user should be assigned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
username
The email address or username for the user. Must be unique within the network.
- Parameters:
username- The email address or username for the user. Must be unique within the network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inviteCode
A custom invite code for the user. If not provided, one will be generated automatically.
- Parameters:
inviteCode- A custom invite code for the user. If not provided, one will be generated automatically.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inviteCodeTtl
The time-to-live for the invite code in days. After this period, the invite code will expire.
- Parameters:
inviteCodeTtl- The time-to-live for the invite code in days. After this period, the invite code will expire.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
codeValidation
Indicates whether the user can be verified through a custom invite code.
- Parameters:
codeValidation- Indicates whether the user can be verified through a custom invite code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-