@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:31.578Z") @Stability(value=Experimental) public interface SparkUIProps extends software.amazon.jsii.JsiiSerializable
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.*;
import software.amazon.awscdk.services.s3.*;
Bucket bucket;
SparkUIProps sparkUIProps = SparkUIProps.builder()
.enabled(false)
// the properties below are optional
.bucket(bucket)
.prefix("prefix")
.build();
https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html| Modifier and Type | Interface and Description |
|---|---|
static class |
SparkUIProps.Builder
A builder for
SparkUIProps |
static class |
SparkUIProps.Jsii$Proxy
An implementation for
SparkUIProps |
| Modifier and Type | Method and Description |
|---|---|
static SparkUIProps.Builder |
builder() |
default IBucket |
getBucket()
(experimental) The bucket where the Glue job stores the logs.
|
Boolean |
getEnabled()
(experimental) Enable Spark UI.
|
default String |
getPrefix()
(experimental) The path inside the bucket (objects prefix) where the Glue job stores the logs.
|
@Stability(value=Experimental) @NotNull Boolean getEnabled()
@Stability(value=Experimental) @Nullable default IBucket getBucket()
Default: a new bucket will be created.
@Stability(value=Experimental) @Nullable default String getPrefix()
Default: '/' - the logs will be written at the root of the bucket
@Stability(value=Experimental) static SparkUIProps.Builder builder()
SparkUIProps.Builder of SparkUIPropsCopyright © 2022. All rights reserved.