ColumnDefinitionArgs

data class ColumnDefinitionArgs(val name: Output<String>? = null, val type: Output<Either<String, KnownColumnDefinitionType>>? = null) : ConvertibleToJava<ColumnDefinitionArgs>

Definition of custom data column.

Constructors

Link copied to clipboard
constructor(name: Output<String>? = null, type: Output<Either<String, KnownColumnDefinitionType>>? = null)

Properties

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

The name of the column.

Link copied to clipboard
val type: Output<Either<String, KnownColumnDefinitionType>>? = null

The type of the column data.

Functions

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