Interface SparkExtraCodeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SparkExtraCodeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:30.189Z")
@Stability(Deprecated)
@Deprecated
public interface SparkExtraCodeProps
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) Code props for different
Code assets used by different types of Spark 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.*;
Code code;
SparkExtraCodeProps sparkExtraCodeProps = SparkExtraCodeProps.builder()
.extraFiles(List.of(code))
.extraJars(List.of(code))
.extraJarsFirst(false)
.extraPythonFiles(List.of(code))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic SparkExtraCodeProps.Builderbuilder()Deprecated.Deprecated.Deprecated.default BooleanDeprecated.Deprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExtraFiles
Deprecated.(deprecated) Additional files, such as configuration files that AWS Glue copies to the working directory of your script before executing it.Default: - no extra files specified.
- See Also:
-
getExtraJars
Deprecated.(deprecated) Extra Jars S3 URL (optional) S3 URL where additional jar dependencies are located.Default: - no extra jar files
-
getExtraJarsFirst
Deprecated.(deprecated) Setting this value to true prioritizes the customer's extra JAR files in the classpath.Default: false - priority is not given to user-provided jars
- See Also:
-
getExtraPythonFiles
Deprecated.(deprecated) Extra Python Files S3 URL (optional) S3 URL where additional python dependencies are located.Default: - no extra files
-
builder
Deprecated.- Returns:
- a
SparkExtraCodeProps.BuilderofSparkExtraCodeProps
-