DWCopy Command Settings Args
data class DWCopyCommandSettingsArgs(val additionalOptions: Output<Map<String, String>>? = null, val defaultValues: Output<List<DWCopyCommandDefaultValueArgs>>? = null) : ConvertibleToJava<DWCopyCommandSettingsArgs>
DW Copy Command settings.
Constructors
Link copied to clipboard
constructor(additionalOptions: Output<Map<String, String>>? = null, defaultValues: Output<List<DWCopyCommandDefaultValueArgs>>? = null)
Properties
Link copied to clipboard
Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
Link copied to clipboard
Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).