ConnectionProfilePostgresqlProfileArgs

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

Constructors

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

Properties

Link copied to clipboard
val database: Output<String>

Database for the PostgreSQL connection.

Link copied to clipboard
val hostname: Output<String>

Hostname for the PostgreSQL connection.

Link copied to clipboard
val password: Output<String>

Password for the PostgreSQL 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 PostgreSQL connection.

Link copied to clipboard
val username: Output<String>

Username for the PostgreSQL connection.

Functions

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