ConnectionProfileMysqlProfileArgs

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

Constructors

Link copied to clipboard
constructor(hostname: Output<String>, password: Output<String>? = null, port: Output<Int>? = null, secretManagerStoredPassword: Output<String>? = 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>? = null

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
val secretManagerStoredPassword: Output<String>? = null

A reference to a Secret Manager resource name storing the user's password.

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