Interface Credential.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Credential.Builder,Credential>,SdkBuilder<Credential.Builder,Credential>,SdkPojo
- Enclosing class:
- Credential
public static interface Credential.Builder extends SdkPojo, CopyableBuilder<Credential.Builder,Credential>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Credential.Builderpassword(String password)The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.Credential.Builderusername(String username)The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.-
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, sdkFields
-
-
-
-
Method Detail
-
username
Credential.Builder username(String username)
The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.
- Parameters:
username- The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
password
Credential.Builder password(String password)
The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.
- Parameters:
password- The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-