DelimitedTextWriteSettingsArgs

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

Delimited text write settings.

Constructors

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

Properties

Link copied to clipboard
val fileExtension: Output<Any>

The file extension used to create the files. Type: string (or Expression with resultType string).

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 quoteAllText: Output<Any>? = null

Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).

Link copied to clipboard
val type: Output<String>

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

Functions

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