Interface GlueStartJobRunProps
- All Superinterfaces:
AssignableStateOptions,software.amazon.jsii.JsiiSerializable,JsonataCommonOptions,JsonPathCommonOptions,StateBaseProps,TaskStateBaseOptions,TaskStateBaseProps
- All Known Implementing Classes:
GlueStartJobRunProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:16.306Z")
@Stability(Stable)
public interface GlueStartJobRunProps
extends software.amazon.jsii.JsiiSerializable, TaskStateBaseProps
Properties for starting an AWS Glue job as a task.
Example:
GlueStartJobRun.Builder.create(this, "Task")
.glueJobName("my-glue-job")
.workerConfiguration(WorkerConfigurationProperty.builder()
.workerTypeV2(WorkerTypeV2.G_1X) // Worker type
.numberOfWorkers(2)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGlueStartJobRunPropsstatic final classAn implementation forGlueStartJobRunProps -
Method Summary
Modifier and TypeMethodDescriptionstatic GlueStartJobRunProps.Builderbuilder()default TaskInputThe job arguments specifically for this run.default ExecutionClassThe excecution class of the job.Glue job name.default DurationAfter a job run starts, the number of minutes to wait before sending a job run delay notification.default StringThe name of the SecurityConfiguration structure to be used with this job run.default WorkerConfigurationPropertyThe worker configuration for this run.Methods inherited from interface software.amazon.awscdk.services.stepfunctions.AssignableStateOptions
getAssignMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.stepfunctions.JsonataCommonOptions
getOutputsMethods inherited from interface software.amazon.awscdk.services.stepfunctions.JsonPathCommonOptions
getInputPath, getOutputPathMethods inherited from interface software.amazon.awscdk.services.stepfunctions.StateBaseProps
getComment, getQueryLanguage, getStateNameMethods inherited from interface software.amazon.awscdk.services.stepfunctions.TaskStateBaseOptions
getCredentials, getHeartbeat, getHeartbeatTimeout, getIntegrationPattern, getTaskTimeout, getTimeoutMethods inherited from interface software.amazon.awscdk.services.stepfunctions.TaskStateBaseProps
getResultPath, getResultSelector
-
Method Details
-
getGlueJobName
Glue job name. -
getArguments
The job arguments specifically for this run.For this job run, they replace the default arguments set in the job definition itself.
Default: - Default arguments set in the job definition
-
getExecutionClass
The excecution class of the job.Default: - STANDARD
-
getNotifyDelayAfter
After a job run starts, the number of minutes to wait before sending a job run delay notification.Must be at least 1 minute.
Default: - Default delay set in the job definition
-
getSecurityConfiguration
The name of the SecurityConfiguration structure to be used with this job run.This must match the Glue API
Default: - Default configuration set in the job definition
- See Also:
-
getWorkerConfiguration
The worker configuration for this run.Default: - Default worker configuration in the job definition
-
builder
- Returns:
- a
GlueStartJobRunProps.BuilderofGlueStartJobRunProps
-