MySqlConnectionProfileArgs

data class MySqlConnectionProfileArgs(val cloudSqlId: Output<String>? = null, val host: Output<String>, val password: Output<String>, val port: Output<Int>, val ssl: Output<SslConfigArgs>? = null, val username: Output<String>) : ConvertibleToJava<MySqlConnectionProfileArgs>

Specifies connection parameters required specifically for MySQL databases.

Constructors

Link copied to clipboard
fun MySqlConnectionProfileArgs(cloudSqlId: Output<String>? = null, host: Output<String>, password: Output<String>, port: Output<Int>, ssl: Output<SslConfigArgs>? = null, username: Output<String>)

Functions

Link copied to clipboard
open override fun toJava(): MySqlConnectionProfileArgs

Properties

Link copied to clipboard
val cloudSqlId: Output<String>? = null

If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of the source.

Link copied to clipboard
val host: Output<String>

The IP or hostname of the source MySQL database.

Link copied to clipboard
val password: Output<String>

Input only. The password for the user that Database Migration Service will be using to connect to the database. This field is not returned on request, and the value is encrypted when stored in Database Migration Service.

Link copied to clipboard
val port: Output<Int>

The network port of the source MySQL database.

Link copied to clipboard
val ssl: Output<SslConfigArgs>? = null

SSL configuration for the destination to connect to the source database.

Link copied to clipboard
val username: Output<String>

The username that Database Migration Service will use to connect to the database. The value is encrypted when stored in Database Migration Service.