Interface SparkUIProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
SparkUIProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-17T14:54:30.197Z") @Stability(Deprecated) @Deprecated public interface SparkUIProps extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) 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)
         .prefix("prefix")
         .build();
 

See Also:
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
    Deprecated.
    static final class 
    Deprecated.
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    default IBucket
    Deprecated.
    default String
    Deprecated.

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Method Details

    • getBucket

      @Stability(Deprecated) @Deprecated @Nullable default IBucket getBucket()
      Deprecated.
      (deprecated) The bucket where the Glue job stores the logs.

      Default: a new bucket will be created.

    • getPrefix

      @Stability(Deprecated) @Deprecated @Nullable default String getPrefix()
      Deprecated.
      (deprecated) 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

      @Stability(Deprecated) @Deprecated static SparkUIProps.Builder builder()
      Deprecated.
      Returns:
      a SparkUIProps.Builder of SparkUIProps