@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-07T23:47:07.741Z") @Stability(value=Experimental) public interface SparkUILoggingLocation 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;
SparkUILoggingLocation sparkUILoggingLocation = SparkUILoggingLocation.builder()
.bucket(bucket)
// the properties below are optional
.prefix("prefix")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
SparkUILoggingLocation.Builder
A builder for
SparkUILoggingLocation |
static class |
SparkUILoggingLocation.Jsii$Proxy
An implementation for
SparkUILoggingLocation |
| Modifier and Type | Method and Description |
|---|---|
static SparkUILoggingLocation.Builder |
builder() |
IBucket |
getBucket()
(experimental) The bucket where the Glue job stores the logs.
|
default String |
getPrefix()
(experimental) The path inside the bucket (objects prefix) where the Glue job stores the logs.
|
@Stability(value=Experimental) @NotNull IBucket getBucket()
@Stability(value=Experimental) @Nullable default String getPrefix()
Default: '/' - the logs will be written at the root of the bucket
@Stability(value=Experimental) static SparkUILoggingLocation.Builder builder()
SparkUILoggingLocation.Builder of SparkUILoggingLocationCopyright © 2022. All rights reserved.