OrcWriteSettingsArgs

data class OrcWriteSettingsArgs(val fileNamePrefix: Output<Any>? = null, val maxRowsPerFile: Output<Any>? = null, val type: Output<String>) : ConvertibleToJava<OrcWriteSettingsArgs>

Orc write settings.

Constructors

Link copied to clipboard
constructor(fileNamePrefix: Output<Any>? = null, maxRowsPerFile: Output<Any>? = null, type: Output<String>)

Properties

Link copied to clipboard
val fileNamePrefix: Output<Any>? = null

Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).

Link copied to clipboard
val maxRowsPerFile: Output<Any>? = null

Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).

Link copied to clipboard
val type: Output<String>

The write setting type. Expected value is 'OrcWriteSettings'.

Functions

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