ConnectionProfileMysqlProfile

data class ConnectionProfileMysqlProfile(val hostname: String, val password: String, val port: Int? = null, val sslConfig: ConnectionProfileMysqlProfileSslConfig? = null, val username: String)

Constructors

Link copied to clipboard
constructor(hostname: String, password: String, port: Int? = null, sslConfig: ConnectionProfileMysqlProfileSslConfig? = null, username: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Hostname for the MySQL connection.

Link copied to clipboard

Password for the MySQL connection. Note: This property is sensitive and will not be displayed in the plan.

Link copied to clipboard
val port: Int? = null

Port for the MySQL connection.

Link copied to clipboard

SSL configuration for the MySQL connection. Structure is documented below.

Link copied to clipboard

Username for the MySQL connection.