Class: Aws::RDS::Types::UserAuthConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::UserAuthConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
When making an API call, you may pass UserAuthConfig data as a hash:
{
description: "String",
user_name: "String",
auth_scheme: "SECRETS", # accepts SECRETS
secret_arn: "String",
iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
}
Specifies the details of authentication used by a proxy to log in as a specific database user.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auth_scheme ⇒ String
The type of authentication that the proxy uses for connections from the proxy to the underlying database.
-
#description ⇒ String
A user-specified description about the authentication used by a proxy to log in as a specific database user.
-
#iam_auth ⇒ String
Whether to require or disallow AWS Identity and Access Management (IAM) authentication for connections to the proxy.
-
#secret_arn ⇒ String
The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster.
-
#user_name ⇒ String
The name of the database user to which the proxy connects.
Instance Attribute Details
#auth_scheme ⇒ String
The type of authentication that the proxy uses for connections from the proxy to the underlying database.
20554 20555 20556 20557 20558 20559 20560 20561 20562 |
# File 'lib/aws-sdk-rds/types.rb', line 20554 class UserAuthConfig < Struct.new( :description, :user_name, :auth_scheme, :secret_arn, :iam_auth) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A user-specified description about the authentication used by a proxy to log in as a specific database user.
20554 20555 20556 20557 20558 20559 20560 20561 20562 |
# File 'lib/aws-sdk-rds/types.rb', line 20554 class UserAuthConfig < Struct.new( :description, :user_name, :auth_scheme, :secret_arn, :iam_auth) SENSITIVE = [] include Aws::Structure end |
#iam_auth ⇒ String
Whether to require or disallow AWS Identity and Access Management (IAM) authentication for connections to the proxy.
20554 20555 20556 20557 20558 20559 20560 20561 20562 |
# File 'lib/aws-sdk-rds/types.rb', line 20554 class UserAuthConfig < Struct.new( :description, :user_name, :auth_scheme, :secret_arn, :iam_auth) SENSITIVE = [] include Aws::Structure end |
#secret_arn ⇒ String
The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster. These secrets are stored within Amazon Secrets Manager.
20554 20555 20556 20557 20558 20559 20560 20561 20562 |
# File 'lib/aws-sdk-rds/types.rb', line 20554 class UserAuthConfig < Struct.new( :description, :user_name, :auth_scheme, :secret_arn, :iam_auth) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
The name of the database user to which the proxy connects.
20554 20555 20556 20557 20558 20559 20560 20561 20562 |
# File 'lib/aws-sdk-rds/types.rb', line 20554 class UserAuthConfig < Struct.new( :description, :user_name, :auth_scheme, :secret_arn, :iam_auth) SENSITIVE = [] include Aws::Structure end |