@aws-cdk_aws-glue-alpha.SparkUIProps

interface SparkUIProps ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Glue.Alpha.SparkUIProps
Gogithub.com/aws/aws-cdk-go/awscdkgluealpha/v2#SparkUIProps
Javasoftware.amazon.awscdk.services.glue.alpha.SparkUIProps
Pythonaws_cdk.aws_glue_alpha.SparkUIProps
TypeScript (source)@aws-cdk/aws-glue-alpha ยป SparkUIProps

Properties for enabling Spark UI monitoring feature for Spark-based Glue jobs.

See also: https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue_alpha from '@aws-cdk/aws-glue-alpha';
import { aws_s3 as s3 } from 'aws-cdk-lib';

declare const bucket: s3.Bucket;
const sparkUIProps: glue_alpha.SparkUIProps = {
  enabled: false,

  // the properties below are optional
  bucket: bucket,
  prefix: 'prefix',
};

Properties

NameTypeDescription
enabled๐Ÿ”นbooleanEnable Spark UI.
bucket?๐Ÿ”นIBucketThe bucket where the Glue job stores the logs.
prefix?๐Ÿ”นstringThe path inside the bucket (objects prefix) where the Glue job stores the logs.

enabled๐Ÿ”น

Type: boolean

Enable Spark UI.


bucket?๐Ÿ”น

Type: IBucket (optional, default: a new bucket will be created.)

The bucket where the Glue job stores the logs.


prefix?๐Ÿ”น

Type: string (optional, default: '/' - the logs will be written at the root of the bucket)

The path inside the bucket (objects prefix) where the Glue job stores the logs.