Class: Aws::GuardDuty::Types::LoginAttribute
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GuardDuty::Types::LoginAttribute
 
 
- Defined in:
 - gems/aws-sdk-guardduty/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.
      6679 6680 6681 6682 6683 6684 6685 6686  | 
    
      # File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6679 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.
      6679 6680 6681 6682 6683 6684 6685 6686  | 
    
      # File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6679 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.
      6679 6680 6681 6682 6683 6684 6685 6686  | 
    
      # File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6679 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.
      6679 6680 6681 6682 6683 6684 6685 6686  | 
    
      # File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6679 class LoginAttribute < Struct.new( :user, :application, :failed_login_attempts, :successful_login_attempts) SENSITIVE = [] include Aws::Structure end  |