Interface KxUser.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KxUser.Builder,KxUser>,SdkBuilder<KxUser.Builder,KxUser>,SdkPojo
- Enclosing class:
- KxUser
public static interface KxUser.Builder extends SdkPojo, CopyableBuilder<KxUser.Builder,KxUser>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KxUser.BuildercreateTimestamp(Instant createTimestamp)The timestamp at which the kdb user was created.KxUser.BuilderiamRole(String iamRole)The IAM role ARN that is associated with the user.KxUser.BuilderupdateTimestamp(Instant updateTimestamp)The timestamp at which the kdb user was updated.KxUser.BuilderuserArn(String userArn)The Amazon Resource Name (ARN) that identifies the user.KxUser.BuilderuserName(String userName)A unique identifier for the user.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
userArn
KxUser.Builder userArn(String userArn)
The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use ARNs in policies, see IAM Identifiers in the IAM User Guide.
- Parameters:
userArn- The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use ARNs in policies, see IAM Identifiers in the IAM User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userName
KxUser.Builder userName(String userName)
A unique identifier for the user.
- Parameters:
userName- A unique identifier for the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iamRole
KxUser.Builder iamRole(String iamRole)
The IAM role ARN that is associated with the user.
- Parameters:
iamRole- The IAM role ARN that is associated with the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createTimestamp
KxUser.Builder createTimestamp(Instant createTimestamp)
The timestamp at which the kdb user was created.
- Parameters:
createTimestamp- The timestamp at which the kdb user was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updateTimestamp
KxUser.Builder updateTimestamp(Instant updateTimestamp)
The timestamp at which the kdb user was updated.
- Parameters:
updateTimestamp- The timestamp at which the kdb user was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-