java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-29T17:51:10.221Z") @Stability(Stable) public class GlueStartJobRun extends TaskStateBase
Starts an AWS Glue job in a Task state.

OUTPUT: the output of this task is a JobRun structure, for details consult https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-runs.html#aws-glue-api-jobs-runs-JobRun

Example:

 GlueStartJobRun.Builder.create(this, "Task")
         .glueJobName("my-glue-job")
         .workerConfiguration(WorkerConfigurationProperty.builder()
                 .workerTypeV2(WorkerTypeV2.G_1X) // Worker type
                 .numberOfWorkers(2)
                 .build())
         .build();
 

See Also:
  • Constructor Details

    • GlueStartJobRun

      protected GlueStartJobRun(software.amazon.jsii.JsiiObjectRef objRef)
    • GlueStartJobRun

      protected GlueStartJobRun(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • GlueStartJobRun

      @Stability(Stable) public GlueStartJobRun(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull GlueStartJobRunProps props)
      Parameters:
      scope - This parameter is required.
      id - Descriptive identifier for this chainable. This parameter is required.
      props - This parameter is required.
  • Method Details