Interface UsernamePassword.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UsernamePassword.Builder,UsernamePassword>,SdkBuilder<UsernamePassword.Builder,UsernamePassword>,SdkPojo
- Enclosing class:
- UsernamePassword
public static interface UsernamePassword.Builder extends SdkPojo, CopyableBuilder<UsernamePassword.Builder,UsernamePassword>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UsernamePassword.Builderpassword(String password)The password associated with the temporary credentials that you use to connect to cluster endpoints.UsernamePassword.Builderusername(String username)The username associated with the temporary credentials that you use to connect to cluster endpoints.-
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
-
username
UsernamePassword.Builder username(String username)
The username associated with the temporary credentials that you use to connect to cluster endpoints.
- Parameters:
username- The username associated with the temporary credentials that you use to connect to cluster endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
password
UsernamePassword.Builder password(String password)
The password associated with the temporary credentials that you use to connect to cluster endpoints.
- Parameters:
password- The password associated with the temporary credentials that you use to connect to cluster endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-