SchemaArgs

data class SchemaArgs(val columns: Output<List<ColumnArgs>>? = null, val description: Output<String>? = null, val displayName: Output<String>? = null, val name: Output<String>? = null) : ConvertibleToJava<SchemaArgs>

Table's schema.

Constructors

Link copied to clipboard
constructor(columns: Output<List<ColumnArgs>>? = null, description: Output<String>? = null, displayName: Output<String>? = null, name: Output<String>? = null)

Properties

Link copied to clipboard
val columns: Output<List<ColumnArgs>>? = null

A list of table custom columns.

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

Table description.

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

Table display name.

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

Table name.

Functions

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