Interface AuthenticationMode.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AuthenticationMode.Builder,AuthenticationMode>,SdkBuilder<AuthenticationMode.Builder,AuthenticationMode>,SdkPojo
- Enclosing class:
- AuthenticationMode
public static interface AuthenticationMode.Builder extends SdkPojo, CopyableBuilder<AuthenticationMode.Builder,AuthenticationMode>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthenticationMode.Builderpasswords(String... passwords)The password(s) used for authenticationAuthenticationMode.Builderpasswords(Collection<String> passwords)The password(s) used for authenticationAuthenticationMode.Buildertype(String type)Indicates whether the user requires a password to authenticate.AuthenticationMode.Buildertype(InputAuthenticationType 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
AuthenticationMode.Builder type(String type)
Indicates whether the user requires a password to authenticate. All newly-created users require a password.
- Parameters:
type- Indicates whether the user requires a password to authenticate. All newly-created users require a password.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InputAuthenticationType,InputAuthenticationType
-
type
AuthenticationMode.Builder type(InputAuthenticationType type)
Indicates whether the user requires a password to authenticate. All newly-created users require a password.
- Parameters:
type- Indicates whether the user requires a password to authenticate. All newly-created users require a password.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InputAuthenticationType,InputAuthenticationType
-
passwords
AuthenticationMode.Builder passwords(Collection<String> passwords)
The password(s) used for authentication
- Parameters:
passwords- The password(s) used for authentication- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
passwords
AuthenticationMode.Builder passwords(String... passwords)
The password(s) used for authentication
- Parameters:
passwords- The password(s) used for authentication- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-