TableTableConstraintsArgs

data class TableTableConstraintsArgs(val foreignKeys: Output<List<TableTableConstraintsForeignKeyArgs>>? = null, val primaryKey: Output<TableTableConstraintsPrimaryKeyArgs>? = null) : ConvertibleToJava<TableTableConstraintsArgs>

Constructors

Link copied to clipboard
constructor(foreignKeys: Output<List<TableTableConstraintsForeignKeyArgs>>? = null, primaryKey: Output<TableTableConstraintsPrimaryKeyArgs>? = null)

Properties

Link copied to clipboard

Present only if the table has a foreign key. The foreign key is not enforced. Structure is documented below.

Link copied to clipboard

Represents the primary key constraint on a table's columns. Present only if the table has a primary key. The primary key is not enforced. Structure is documented below.

Functions

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