Show / Hide Table of Contents

Interface ISparkUIProps

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

Namespace: Amazon.CDK.AWS.Glue.Alpha
Assembly: Amazon.CDK.AWS.Glue.Alpha.dll
Syntax (csharp)
public interface ISparkUIProps
Syntax (vb)
Public Interface ISparkUIProps
Remarks

Stability: Experimental

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Glue.Alpha;
             using Amazon.CDK.AWS.S3;

             Bucket bucket;

             var sparkUIProps = new SparkUIProps {
                 Bucket = bucket,
                 Prefix = "prefix"
             };

Synopsis

Properties

Bucket

(experimental) The bucket where the Glue job stores the logs.

Prefix

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

Properties

Bucket

(experimental) The bucket where the Glue job stores the logs.

IBucket? Bucket { get; }
Property Value

IBucket

Remarks

Default: a new bucket will be created.

Stability: Experimental

Prefix

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

string? Prefix { get; }
Property Value

string

Remarks

Use format '/foo/bar'

Default: - the logs will be written at the root of the bucket

Stability: Experimental

Back to top Generated by DocFX