Class: Aws::GuardDuty::Types::LoginAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::LoginAttribute
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-guardduty/types.rb
Overview
Information about the login attempts.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application ⇒ String
Indicates the application name used to attempt log in.
-
#failed_login_attempts ⇒ Integer
Represents the sum of failed (unsuccessful) login attempts made to establish a connection to the database instance.
-
#successful_login_attempts ⇒ Integer
Represents the sum of successful connections (a correct combination of login attributes) made to the database instance by the actor.
-
#user ⇒ String
Indicates the user name which attempted to log in.
Instance Attribute Details
#application ⇒ String
Indicates the application name used to attempt log in.
5757 5758 5759 5760 5761 5762 5763 5764 |
# File 'lib/aws-sdk-guardduty/types.rb', line 5757 class LoginAttribute < Struct.new( :user, :application, :failed_login_attempts, :successful_login_attempts) SENSITIVE = [] include Aws::Structure end |
#failed_login_attempts ⇒ Integer
Represents the sum of failed (unsuccessful) login attempts made to establish a connection to the database instance.
5757 5758 5759 5760 5761 5762 5763 5764 |
# File 'lib/aws-sdk-guardduty/types.rb', line 5757 class LoginAttribute < Struct.new( :user, :application, :failed_login_attempts, :successful_login_attempts) SENSITIVE = [] include Aws::Structure end |
#successful_login_attempts ⇒ Integer
Represents the sum of successful connections (a correct combination of login attributes) made to the database instance by the actor.
5757 5758 5759 5760 5761 5762 5763 5764 |
# File 'lib/aws-sdk-guardduty/types.rb', line 5757 class LoginAttribute < Struct.new( :user, :application, :failed_login_attempts, :successful_login_attempts) SENSITIVE = [] include Aws::Structure end |
#user ⇒ String
Indicates the user name which attempted to log in.
5757 5758 5759 5760 5761 5762 5763 5764 |
# File 'lib/aws-sdk-guardduty/types.rb', line 5757 class LoginAttribute < Struct.new( :user, :application, :failed_login_attempts, :successful_login_attempts) SENSITIVE = [] include Aws::Structure end |