Interface DataprocJobPrestoConfig
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DataprocJobPrestoConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:20.740Z") @Stability(Stable) public interface DataprocJobPrestoConfig extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDataprocJobPrestoConfig.BuilderA builder forDataprocJobPrestoConfigstatic classDataprocJobPrestoConfig.Jsii$ProxyAn implementation forDataprocJobPrestoConfig
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static DataprocJobPrestoConfig.Builderbuilder()default List<String>getClientTags()Presto client tags to attach to this query.default ObjectgetContinueOnFailure()Whether to continue executing queries if a query fails.default DataprocJobPrestoConfigLoggingConfiggetLoggingConfig()logging_config block.default StringgetOutputFormat()The format in which query output will be displayed.default Map<String,String>getProperties()A mapping of property names to values.default StringgetQueryFileUri()The HCFS URI of the script that contains SQL queries.default List<String>getQueryList()The list of SQL queries or statements to execute as part of the job.
-
-
-
Method Detail
-
getClientTags
@Stability(Stable) @Nullable default List<String> getClientTags()
Presto client tags to attach to this query.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#client_tags DataprocJob#client_tags}
-
getContinueOnFailure
@Stability(Stable) @Nullable default Object getContinueOnFailure()
Whether to continue executing queries if a query fails.Setting to true can be useful when executing independent parallel queries. Defaults to false. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#continue_on_failure DataprocJob#continue_on_failure}
-
getLoggingConfig
@Stability(Stable) @Nullable default DataprocJobPrestoConfigLoggingConfig getLoggingConfig()
logging_config block.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#logging_config DataprocJob#logging_config}
-
getOutputFormat
@Stability(Stable) @Nullable default String getOutputFormat()
The format in which query output will be displayed. See the Presto documentation for supported output formats.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#output_format DataprocJob#output_format}
-
getProperties
@Stability(Stable) @Nullable default Map<String,String> getProperties()
A mapping of property names to values.Used to set Presto session properties Equivalent to using the --session flag in the Presto CLI. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#properties DataprocJob#properties}
-
getQueryFileUri
@Stability(Stable) @Nullable default String getQueryFileUri()
The HCFS URI of the script that contains SQL queries. Conflicts with query_list.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#query_file_uri DataprocJob#query_file_uri}
-
getQueryList
@Stability(Stable) @Nullable default List<String> getQueryList()
The list of SQL queries or statements to execute as part of the job. Conflicts with query_file_uri.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#query_list DataprocJob#query_list}
-
builder
@Stability(Stable) static DataprocJobPrestoConfig.Builder builder()
- Returns:
- a
DataprocJobPrestoConfig.BuilderofDataprocJobPrestoConfig
-
-