You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing RDSDatabaseCredentials as input to an Aws::Client method, you can use a vanilla Hash:

{
  username: "RDSDatabaseUsername", # required
  password: "RDSDatabasePassword", # required
}

The database credentials to connect to a database on an RDS DB instance.

Returned by:

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)

    The password to be used by Amazon ML to connect to a database on an RDS DB instance.

#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)

    The username to be used by Amazon ML to connect to database on an Amazon RDS instance.