My Sql Connection Info Args
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)