Class: Aws::MachineLearning::Types::RDSDatabaseCredentials

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

Instance Attribute Details

#passwordString

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.

Returns:

  • (String)


3197
3198
3199
3200
3201
# File 'lib/aws-sdk-machinelearning/types.rb', line 3197

class RDSDatabaseCredentials < Struct.new(
  :username,
  :password)
  include Aws::Structure
end

#usernameString

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.

Returns:

  • (String)


3197
3198
3199
3200
3201
# File 'lib/aws-sdk-machinelearning/types.rb', line 3197

class RDSDatabaseCredentials < Struct.new(
  :username,
  :password)
  include Aws::Structure
end