PostgreSqlConnectionInfoArgs

data class PostgreSqlConnectionInfoArgs(val databaseName: Output<String>? = null, val encryptConnection: Output<Boolean>? = null, val password: Output<String>? = null, val port: Output<Int>, val serverName: Output<String>, val trustServerCertificate: Output<Boolean>? = null, val type: Output<String>, val userName: Output<String>? = null) : ConvertibleToJava<PostgreSqlConnectionInfoArgs>

Information for connecting to PostgreSQL server

Constructors

Link copied to clipboard
constructor(databaseName: Output<String>? = null, encryptConnection: Output<Boolean>? = null, password: Output<String>? = null, port: Output<Int>, serverName: Output<String>, trustServerCertificate: Output<Boolean>? = null, type: Output<String>, userName: Output<String>? = null)

Properties

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

Name of the database

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 trustServerCertificate: Output<Boolean>? = null

Whether to trust the server certificate

Link copied to clipboard
val type: Output<String>

Type of connection info Expected value is 'PostgreSqlConnectionInfo'.

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

User name

Functions

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