Interface SparkUIProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SparkUIProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-12T12:32:13.676Z")
@Stability(Experimental)
public interface SparkUIProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for enabling Spark UI monitoring feature for Spark-based Glue jobs.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.glue.alpha.*; import software.amazon.awscdk.services.s3.*; Bucket bucket; SparkUIProps sparkUIProps = SparkUIProps.builder() .bucket(bucket) .jobRunQueuingEnabled(false) .prefix("prefix") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forSparkUIProps
static final class
An implementation forSparkUIProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic SparkUIProps.Builder
builder()
default IBucket
(experimental) The bucket where the Glue job stores the logs.default Boolean
(experimental) Specifies whether job run queuing is enabled for the job runs for this job.default String
(experimental) The path inside the bucket (objects prefix) where the Glue job stores the logs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
(experimental) The bucket where the Glue job stores the logs.Default: a new bucket will be created.
-
getJobRunQueuingEnabled
(experimental) Specifies whether job run queuing is enabled for the job runs for this job.A value of true means job run queuing is enabled for the job runs. If false or not populated, the job runs will not be considered for queueing. If this field does not match the value set in the job run, then the value from the job run field will be used. This property must be set to false for flex jobs. If this property is enabled, maxRetries must be set to zero.
Default: - no job run queuing
-
getPrefix
(experimental) The path inside the bucket (objects prefix) where the Glue job stores the logs.Use format
'/foo/bar'
Default: - the logs will be written at the root of the bucket
-
builder
- Returns:
- a
SparkUIProps.Builder
ofSparkUIProps
-