ConnectionProfileMysqlProfileArgs

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

Constructors

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

Properties

Link copied to clipboard
val hostname: Output<String>

Hostname for the MySQL connection.

Link copied to clipboard
val password: Output<String>

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

Link copied to clipboard
val port: Output<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
val username: Output<String>

Username for the MySQL connection.

Functions

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