Interface LoginAttribute.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LoginAttribute.Builder,LoginAttribute>,SdkBuilder<LoginAttribute.Builder,LoginAttribute>,SdkPojo
- Enclosing class:
- LoginAttribute
public static interface LoginAttribute.Builder extends SdkPojo, CopyableBuilder<LoginAttribute.Builder,LoginAttribute>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LoginAttribute.Builderapplication(String application)Indicates the application name used to attempt log in.LoginAttribute.BuilderfailedLoginAttempts(Integer failedLoginAttempts)Represents the sum of failed (unsuccessful) login attempts made to establish a connection to the database instance.LoginAttribute.BuildersuccessfulLoginAttempts(Integer successfulLoginAttempts)Represents the sum of successful connections (a correct combination of login attributes) made to the database instance by the actor.LoginAttribute.Builderuser(String user)Indicates the user name which attempted to log in.-
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
-
user
LoginAttribute.Builder user(String 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
LoginAttribute.Builder application(String 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
LoginAttribute.Builder failedLoginAttempts(Integer 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
LoginAttribute.Builder successfulLoginAttempts(Integer 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.
-
-