Interface ScalaSparkFlexEtlJobProps
- All Superinterfaces:
JobProps,software.amazon.jsii.JsiiSerializable,SparkJobProps
- All Known Implementing Classes:
ScalaSparkFlexEtlJobProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:30.173Z")
@Stability(Deprecated)
@Deprecated
public interface ScalaSparkFlexEtlJobProps
extends software.amazon.jsii.JsiiSerializable, SparkJobProps
Deprecated.
(deprecated) Properties for a
ScalaSparkFlexEtlJob.
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.*;
import software.amazon.awscdk.services.iam.*;
import software.amazon.awscdk.services.logs.*;
import software.amazon.awscdk.services.s3.*;
Bucket bucket;
Code code;
Connection connection;
LogGroup logGroup;
Role role;
SecurityConfiguration securityConfiguration;
ScalaSparkFlexEtlJobProps scalaSparkFlexEtlJobProps = ScalaSparkFlexEtlJobProps.builder()
.className("className")
.role(role)
.script(code)
// the properties below are optional
.connections(List.of(connection))
.continuousLogging(ContinuousLoggingProps.builder()
.enabled(false)
// the properties below are optional
.conversionPattern("conversionPattern")
.logGroup(logGroup)
.logStreamPrefix("logStreamPrefix")
.quiet(false)
.build())
.defaultArguments(Map.of(
"defaultArgumentsKey", "defaultArguments"))
.description("description")
.enableMetrics(false)
.enableObservabilityMetrics(false)
.extraFiles(List.of(code))
.extraJars(List.of(code))
.extraJarsFirst(false)
.glueVersion(GlueVersion.V0_9)
.jobName("jobName")
.maxConcurrentRuns(123)
.maxRetries(123)
.notifyDelayAfter(Duration.minutes(30))
.securityConfiguration(securityConfiguration)
.sparkUI(SparkUIProps.builder()
.bucket(bucket)
.prefix("prefix")
.build())
.tags(Map.of(
"tagsKey", "tags"))
.timeout(Duration.minutes(30))
.workerConfiguration(WorkerConfiguration.builder()
.numberOfWorkers(123)
.workerType(WorkerType.STANDARD)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Methods inherited from interface software.amazon.awscdk.services.glue.alpha.JobProps
getConnections, getContinuousLogging, getDefaultArguments, getDescription, getGlueVersion, getJobName, getMaxConcurrentRuns, getMaxRetries, getRole, getScript, getSecurityConfiguration, getTags, getTimeoutMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.glue.alpha.SparkJobProps
getEnableMetrics, getEnableObservabilityMetrics, getSparkUI, getWorkerConfiguration
-
Method Details
-
getClassName
Deprecated.(deprecated) The fully qualified Scala class name that serves as the entry point for the job.- See Also:
-
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:
-
getNotifyDelayAfter
Deprecated.(deprecated) Specifies configuration properties of a notification (optional).After a job run starts, the number of minutes to wait before sending a job run delay notification.
Default: - undefined
-
builder
Deprecated.- Returns:
- a
ScalaSparkFlexEtlJobProps.BuilderofScalaSparkFlexEtlJobProps
-