Show / Hide Table of Contents

Interface ISparkUILoggingLocation

(experimental) The Spark UI logging location.

Namespace: Amazon.CDK.AWS.Glue.Alpha
Assembly: Amazon.CDK.AWS.Glue.Alpha.dll
Syntax (csharp)
public interface ISparkUILoggingLocation
Syntax (vb)
Public Interface ISparkUILoggingLocation
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 sparkUILoggingLocation = new SparkUILoggingLocation {
                 Bucket = bucket,

                 // the properties below are optional
                 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

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

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

Stability: Experimental

Back to top Generated by DocFX