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 for a connection.BasicAuthenticationCredentials.BuilderuserName(String userName)The user name for the connecion.-
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
-
password
BasicAuthenticationCredentials.Builder password(String password)
The password for a connection.
- Parameters:
password- The password for a connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userName
BasicAuthenticationCredentials.Builder userName(String userName)
The user name for the connecion.
- Parameters:
userName- The user name for the connecion.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-