Interface LoginAttribute.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<LoginAttribute.Builder,,LoginAttribute> SdkBuilder<LoginAttribute.Builder,,LoginAttribute> SdkPojo
- Enclosing class:
LoginAttribute
@Mutable
@NotThreadSafe
public static interface LoginAttribute.Builder
extends SdkPojo, CopyableBuilder<LoginAttribute.Builder,LoginAttribute>
-
Method Summary
Modifier and TypeMethodDescriptionapplication(String application) Indicates the application name used to attempt log in.failedLoginAttempts(Integer failedLoginAttempts) Represents the sum of failed (unsuccessful) login attempts made to establish a connection to the database instance.successfulLoginAttempts(Integer successfulLoginAttempts) Represents the sum of successful connections (a correct combination of login attributes) made to the database instance by the actor.Indicates the user name which attempted to log in.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
user
Indicates the user name which attempted to log in.
- Parameters:
user- Indicates the user name which attempted to log in.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
application
Indicates the application name used to attempt log in.
- Parameters:
application- Indicates the application name used to attempt log in.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedLoginAttempts
Represents the sum of failed (unsuccessful) login attempts made to establish a connection to the database instance.
- Parameters:
failedLoginAttempts- Represents the sum of failed (unsuccessful) login attempts made to establish a connection to the database instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
successfulLoginAttempts
Represents the sum of successful connections (a correct combination of login attributes) made to the database instance by the actor.
- Parameters:
successfulLoginAttempts- Represents the sum of successful connections (a correct combination of login attributes) made to the database instance by the actor.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-