MysqlProfileArgs

data class MysqlProfileArgs(val hostname: Output<String>, val password: Output<String>, val port: Output<Int>? = null, val sslConfig: Output<MysqlSslConfigArgs>? = null, val username: Output<String>) : ConvertibleToJava<MysqlProfileArgs>

MySQL database profile.

Constructors

Link copied to clipboard
fun MysqlProfileArgs(hostname: Output<String>, password: Output<String>, port: Output<Int>? = null, sslConfig: Output<MysqlSslConfigArgs>? = null, username: Output<String>)

Functions

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

Properties

Link copied to clipboard
val hostname: Output<String>

Hostname for the MySQL connection.

Link copied to clipboard
val password: Output<String>

Input only. Password for the MySQL connection.

Link copied to clipboard
val port: Output<Int>? = null

Port for the MySQL connection, default value is 3306.

Link copied to clipboard
val sslConfig: Output<MysqlSslConfigArgs>? = null

SSL configuration for the MySQL connection.

Link copied to clipboard
val username: Output<String>

Username for the MySQL connection.