MySqlConnectionInfoArgs

data class MySqlConnectionInfoArgs(val additionalSettings: Output<String>? = null, val authentication: Output<Either<String, AuthenticationType>>? = null, val dataSource: Output<String>? = null, val encryptConnection: Output<Boolean>? = null, val password: Output<String>? = null, val port: Output<Int>, val serverName: Output<String>, val type: Output<String>, val userName: Output<String>? = null) : ConvertibleToJava<MySqlConnectionInfoArgs>

Information for connecting to MySQL server

Constructors

Link copied to clipboard
constructor(additionalSettings: Output<String>? = null, authentication: Output<Either<String, AuthenticationType>>? = null, dataSource: Output<String>? = null, encryptConnection: Output<Boolean>? = null, password: Output<String>? = null, port: Output<Int>, serverName: Output<String>, type: Output<String>, userName: Output<String>? = null)

Properties

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

Additional connection settings

Link copied to clipboard
val authentication: Output<Either<String, AuthenticationType>>? = null

Authentication type to use for connection

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

Data source

Link copied to clipboard
val encryptConnection: Output<Boolean>? = null

Whether to encrypt the connection

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

Password credential.

Link copied to clipboard
val port: Output<Int>

Port for Server

Link copied to clipboard
val serverName: Output<String>

Name of the server

Link copied to clipboard
val type: Output<String>

Type of connection info Expected value is 'MySqlConnectionInfo'.

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

User name

Functions

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