Class: Aws::GuardDuty::Types::RdsDbUserDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::RdsDbUserDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-guardduty/types.rb
Overview
Contains information about the user and authentication details for a database instance involved in the finding.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application ⇒ String
The application name used in the anomalous login attempt.
-
#auth_method ⇒ String
The authentication method used by the user involved in the finding.
-
#database ⇒ String
The name of the database instance involved in the anomalous login attempt.
-
#ssl ⇒ String
The version of the Secure Socket Layer (SSL) used for the network.
-
#user ⇒ String
The user name used in the anomalous login attempt.
Instance Attribute Details
#application ⇒ String
The application name used in the anomalous login attempt.
7072 7073 7074 7075 7076 7077 7078 7079 7080 |
# File 'lib/aws-sdk-guardduty/types.rb', line 7072 class RdsDbUserDetails < Struct.new( :user, :application, :database, :ssl, :auth_method) SENSITIVE = [] include Aws::Structure end |
#auth_method ⇒ String
The authentication method used by the user involved in the finding.
7072 7073 7074 7075 7076 7077 7078 7079 7080 |
# File 'lib/aws-sdk-guardduty/types.rb', line 7072 class RdsDbUserDetails < Struct.new( :user, :application, :database, :ssl, :auth_method) SENSITIVE = [] include Aws::Structure end |
#database ⇒ String
The name of the database instance involved in the anomalous login attempt.
7072 7073 7074 7075 7076 7077 7078 7079 7080 |
# File 'lib/aws-sdk-guardduty/types.rb', line 7072 class RdsDbUserDetails < Struct.new( :user, :application, :database, :ssl, :auth_method) SENSITIVE = [] include Aws::Structure end |
#ssl ⇒ String
The version of the Secure Socket Layer (SSL) used for the network.
7072 7073 7074 7075 7076 7077 7078 7079 7080 |
# File 'lib/aws-sdk-guardduty/types.rb', line 7072 class RdsDbUserDetails < Struct.new( :user, :application, :database, :ssl, :auth_method) SENSITIVE = [] include Aws::Structure end |
#user ⇒ String
The user name used in the anomalous login attempt.
7072 7073 7074 7075 7076 7077 7078 7079 7080 |
# File 'lib/aws-sdk-guardduty/types.rb', line 7072 class RdsDbUserDetails < Struct.new( :user, :application, :database, :ssl, :auth_method) SENSITIVE = [] include Aws::Structure end |