PostgresqlTableArgs

data class PostgresqlTableArgs(val postgresqlColumns: Output<List<PostgresqlColumnArgs>>? = null, val table: Output<String>? = null) : ConvertibleToJava<PostgresqlTableArgs>

PostgreSQL table.

Constructors

Link copied to clipboard
fun PostgresqlTableArgs(postgresqlColumns: Output<List<PostgresqlColumnArgs>>? = null, table: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard

PostgreSQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.

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

Table name.