Class: Aws::MachineLearning::Types::RDSDatabaseCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::RDSDatabaseCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-machinelearning/types.rb
Overview
Note:
When making an API call, you may pass RDSDatabaseCredentials data as a hash:
{
username: "RDSDatabaseUsername", # required
password: "RDSDatabasePassword", # required
}
The database credentials to connect to a database on an RDS DB instance.
Instance Attribute Summary collapse
-
#password ⇒ String
The password to be used by Amazon ML to connect to a database on an RDS DB instance.
-
#username ⇒ String
The username to be used by Amazon ML to connect to database on an Amazon RDS instance.
Instance Attribute Details
#password ⇒ String
The password to be used by Amazon ML to connect to a database on an RDS DB instance. The password should have sufficient permissions to execute the ‘RDSSelectQuery` query.
3197 3198 3199 3200 3201 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 3197 class RDSDatabaseCredentials < Struct.new( :username, :password) include Aws::Structure end |
#username ⇒ String
The username to be used by Amazon ML to connect to database on an Amazon RDS instance. The username should have sufficient permissions to execute an ‘RDSSelectSqlQuery` query.
3197 3198 3199 3200 3201 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 3197 class RDSDatabaseCredentials < Struct.new( :username, :password) include Aws::Structure end |