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