java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.stepfunctions.tasks.RunGlueJobTask
All Implemented Interfaces:
IStepFunctionsTask, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.167Z") @Stability(Deprecated) @Deprecated public class RunGlueJobTask extends software.amazon.jsii.JsiiObject implements IStepFunctionsTask
Deprecated.
use GlueStartJobRun
(deprecated) Invoke a Glue job as a Task.

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:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.stepfunctions.*;
 import software.amazon.awscdk.services.stepfunctions.tasks.*;
 import software.amazon.awscdk.core.*;
 RunGlueJobTask runGlueJobTask = RunGlueJobTask.Builder.create("glueJobName")
         .arguments(Map.of(
                 "argumentsKey", "arguments"))
         .integrationPattern(ServiceIntegrationPattern.FIRE_AND_FORGET)
         .notifyDelayAfter(Duration.minutes(30))
         .securityConfiguration("securityConfiguration")
         .timeout(Duration.minutes(30))
         .build();
 

See Also:
  • Constructor Details

    • RunGlueJobTask

      protected RunGlueJobTask(software.amazon.jsii.JsiiObjectRef objRef)
      Deprecated.
    • RunGlueJobTask

      protected RunGlueJobTask(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
      Deprecated.
    • RunGlueJobTask

      @Stability(Deprecated) @Deprecated public RunGlueJobTask(@NotNull String glueJobName, @Nullable RunGlueJobTaskProps props)
      Deprecated.
      Parameters:
      glueJobName - This parameter is required.
      props -
    • RunGlueJobTask

      @Stability(Deprecated) @Deprecated public RunGlueJobTask(@NotNull String glueJobName)
      Deprecated.
      Parameters:
      glueJobName - This parameter is required.
  • Method Details