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.103.1 (build bef2dea)", date="2024-09-11T18:01:24.464Z") @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()
                 .workerType(WorkerType.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