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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#applicationString

Indicates the application name used to attempt log in.

Returns:

  • (String)


5329
5330
5331
5332
5333
5334
5335
5336
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 5329

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)


5329
5330
5331
5332
5333
5334
5335
5336
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 5329

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)


5329
5330
5331
5332
5333
5334
5335
5336
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 5329

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)


5329
5330
5331
5332
5333
5334
5335
5336
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 5329

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