SnowflakeExportCopyCommandResponse

data class SnowflakeExportCopyCommandResponse(val additionalCopyOptions: Map<String, Any>? = null, val additionalFormatOptions: Map<String, Any>? = null, val storageIntegration: Any? = null, val type: String)

Snowflake export command settings.

Constructors

Link copied to clipboard
constructor(additionalCopyOptions: Map<String, Any>? = null, additionalFormatOptions: Map<String, Any>? = null, storageIntegration: Any? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Additional copy options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalCopyOptions": { "DATE_FORMAT": "MM/DD/YYYY", "TIME_FORMAT": "'HH24:MI:SS.FF'" }

Link copied to clipboard

Additional format options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalFormatOptions": { "OVERWRITE": "TRUE", "MAX_FILE_SIZE": "'FALSE'" }

Link copied to clipboard
val storageIntegration: Any? = null

The name of the snowflake storage integration to use for the copy operation. Type: string (or Expression with resultType string).

Link copied to clipboard

The export setting type. Expected value is 'SnowflakeExportCopyCommand'.