Class: Aws::GuardDuty::Types::LoginAttribute

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-guardduty/types.rb

Overview

Information about the login attempts.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#applicationString

Indicates the application name used to attempt log in.

Returns:

  • (String)


5091
5092
5093
5094
5095
5096
5097
5098
# File 'lib/aws-sdk-guardduty/types.rb', line 5091

class LoginAttribute < Struct.new(
  :user,
  :application,
  :failed_login_attempts,
  :successful_login_attempts)
  SENSITIVE = []
  include Aws::Structure
end

#failed_login_attemptsInteger

Represents the sum of failed (unsuccessful) login attempts made to establish a connection to the database instance.

Returns:

  • (Integer)


5091
5092
5093
5094
5095
5096
5097
5098
# File 'lib/aws-sdk-guardduty/types.rb', line 5091

class LoginAttribute < Struct.new(
  :user,
  :application,
  :failed_login_attempts,
  :successful_login_attempts)
  SENSITIVE = []
  include Aws::Structure
end

#successful_login_attemptsInteger

Represents the sum of successful connections (a correct combination of login attributes) made to the database instance by the actor.

Returns:

  • (Integer)


5091
5092
5093
5094
5095
5096
5097
5098
# File 'lib/aws-sdk-guardduty/types.rb', line 5091

class LoginAttribute < Struct.new(
  :user,
  :application,
  :failed_login_attempts,
  :successful_login_attempts)
  SENSITIVE = []
  include Aws::Structure
end

#userString

Indicates the user name which attempted to log in.

Returns:

  • (String)


5091
5092
5093
5094
5095
5096
5097
5098
# File 'lib/aws-sdk-guardduty/types.rb', line 5091

class LoginAttribute < Struct.new(
  :user,
  :application,
  :failed_login_attempts,
  :successful_login_attempts)
  SENSITIVE = []
  include Aws::Structure
end