DatasetSnowflakeSchemaColumnArgs

data class DatasetSnowflakeSchemaColumnArgs(val name: Output<String>, val precision: Output<Int>? = null, val scale: Output<Int>? = null, val type: Output<String>? = null) : ConvertibleToJava<DatasetSnowflakeSchemaColumnArgs>

Constructors

Link copied to clipboard
constructor(name: Output<String>, precision: Output<Int>? = null, scale: Output<Int>? = null, type: Output<String>? = null)

Properties

Link copied to clipboard
val name: Output<String>

The name of the column.

Link copied to clipboard
val precision: Output<Int>? = null

The total number of digits allowed.

Link copied to clipboard
val scale: Output<Int>? = null

The number of digits allowed to the right of the decimal point.

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

Type of the column. Valid values are NUMBER, DECIMAL, NUMERIC, INT, INTEGER, BIGINT, SMALLINT, FLOAT``FLOAT4, FLOAT8, DOUBLE, DOUBLE PRECISION, REAL, VARCHAR, CHAR, CHARACTER, STRING, TEXT, BINARY, VARBINARY, BOOLEAN, DATE, DATETIME, TIME, TIMESTAMP, TIMESTAMP_LTZ, TIMESTAMP_NTZ, TIMESTAMP_TZ, VARIANT, OBJECT, ARRAY, GEOGRAPHY. Please note these values are case sensitive.

Functions

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