Interface Authentication.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<Authentication.Builder,Authentication>
,SdkBuilder<Authentication.Builder,Authentication>
,SdkPojo
- Enclosing class:
- Authentication
public static interface Authentication.Builder extends SdkPojo, CopyableBuilder<Authentication.Builder,Authentication>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Authentication.Builder
passwordCount(Integer passwordCount)
The number of passwords belonging to the user.Authentication.Builder
type(String type)
Indicates whether the user requires a password to authenticate.Authentication.Builder
type(AuthenticationType type)
Indicates whether the user requires a password to authenticate.-
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
-
type
Authentication.Builder type(String type)
Indicates whether the user requires a password to authenticate.
- Parameters:
type
- Indicates whether the user requires a password to authenticate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuthenticationType
,AuthenticationType
-
type
Authentication.Builder type(AuthenticationType type)
Indicates whether the user requires a password to authenticate.
- Parameters:
type
- Indicates whether the user requires a password to authenticate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuthenticationType
,AuthenticationType
-
passwordCount
Authentication.Builder passwordCount(Integer passwordCount)
The number of passwords belonging to the user. The maximum is two.
- Parameters:
passwordCount
- The number of passwords belonging to the user. The maximum is two.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-