Interface SparkSubmitJobDriver.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SparkSubmitJobDriver.Builder,SparkSubmitJobDriver>,SdkBuilder<SparkSubmitJobDriver.Builder,SparkSubmitJobDriver>,SdkPojo
- Enclosing class:
- SparkSubmitJobDriver
public static interface SparkSubmitJobDriver.Builder extends SdkPojo, CopyableBuilder<SparkSubmitJobDriver.Builder,SparkSubmitJobDriver>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SparkSubmitJobDriver.BuilderentryPoint(String entryPoint)The entry point of job application.SparkSubmitJobDriver.BuilderentryPointArguments(String... entryPointArguments)The arguments for job application.SparkSubmitJobDriver.BuilderentryPointArguments(Collection<String> entryPointArguments)The arguments for job application.SparkSubmitJobDriver.BuildersparkSubmitParameters(String sparkSubmitParameters)The Spark submit parameters that are used for job runs.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
entryPoint
SparkSubmitJobDriver.Builder entryPoint(String entryPoint)
The entry point of job application.
- Parameters:
entryPoint- The entry point of job application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entryPointArguments
SparkSubmitJobDriver.Builder entryPointArguments(Collection<String> entryPointArguments)
The arguments for job application.
- Parameters:
entryPointArguments- The arguments for job application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entryPointArguments
SparkSubmitJobDriver.Builder entryPointArguments(String... entryPointArguments)
The arguments for job application.
- Parameters:
entryPointArguments- The arguments for job application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sparkSubmitParameters
SparkSubmitJobDriver.Builder sparkSubmitParameters(String sparkSubmitParameters)
The Spark submit parameters that are used for job runs.
- Parameters:
sparkSubmitParameters- The Spark submit parameters that are used for job runs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-