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.
6802 6803 6804 6805 6806 6807 6808 6809 6810 |
# File 'lib/aws-sdk-guardduty/types.rb', line 6802 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.
6802 6803 6804 6805 6806 6807 6808 6809 6810 |
# File 'lib/aws-sdk-guardduty/types.rb', line 6802 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.
6802 6803 6804 6805 6806 6807 6808 6809 6810 |
# File 'lib/aws-sdk-guardduty/types.rb', line 6802 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.
6802 6803 6804 6805 6806 6807 6808 6809 6810 |
# File 'lib/aws-sdk-guardduty/types.rb', line 6802 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.
6802 6803 6804 6805 6806 6807 6808 6809 6810 |
# File 'lib/aws-sdk-guardduty/types.rb', line 6802 class RdsDbUserDetails < Struct.new( :user, :application, :database, :ssl, :auth_method) SENSITIVE = [] include Aws::Structure end |