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.94.0 (build b380f01)", date="2024-03-14T22:22:02.489Z") @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:

 import software.amazon.awscdk.services.glue.alpha.*;
 Job submitGlue;
 GlueStartJobRun submitJob = GlueStartJobRun.Builder.create(this, "Submit Job")
         .glueJobName(submitGlue.getJobName())
         .integrationPattern(IntegrationPattern.RUN_JOB)
         .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