JobPrestoConfigArgs

data class JobPrestoConfigArgs(val clientTags: Output<List<String>>? = null, val continueOnFailure: Output<Boolean>? = null, val loggingConfig: Output<JobPrestoConfigLoggingConfigArgs>? = null, val outputFormat: Output<String>? = null, val properties: Output<Map<String, String>>? = null, val queryFileUri: Output<String>? = null, val queryLists: Output<List<String>>? = null) : ConvertibleToJava<JobPrestoConfigArgs>

Constructors

Link copied to clipboard
constructor(clientTags: Output<List<String>>? = null, continueOnFailure: Output<Boolean>? = null, loggingConfig: Output<JobPrestoConfigLoggingConfigArgs>? = null, outputFormat: Output<String>? = null, properties: Output<Map<String, String>>? = null, queryFileUri: Output<String>? = null, queryLists: Output<List<String>>? = null)

Properties

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

Presto client tags to attach to this query.

Link copied to clipboard
val continueOnFailure: Output<Boolean>? = null

Whether to continue executing queries if a query fails. Setting to true can be useful when executing independent parallel queries. Defaults to false.

Link copied to clipboard

The runtime logging config of the job

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

The format in which query output will be displayed. See the Presto documentation for supported output formats.

Link copied to clipboard
val properties: Output<Map<String, String>>? = null

A mapping of property names to values. Used to set Presto session properties Equivalent to using the --session flag in the Presto CLI.

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

The HCFS URI of the script that contains SQL queries. Conflicts with query_list

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

The list of SQL queries or statements to execute as part of the job. Conflicts with query_file_uri

Functions

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