Interface RunGlueJobTaskProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
RunGlueJobTaskProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.169Z") @Stability(Deprecated) @Deprecated public interface RunGlueJobTaskProps extends software.amazon.jsii.JsiiSerializable
Deprecated.
use GlueStartJobRun
(deprecated) Properties for RunGlueJobTask.

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.*;
 RunGlueJobTaskProps runGlueJobTaskProps = RunGlueJobTaskProps.builder()
         .arguments(Map.of(
                 "argumentsKey", "arguments"))
         .integrationPattern(ServiceIntegrationPattern.FIRE_AND_FORGET)
         .notifyDelayAfter(Duration.minutes(30))
         .securityConfiguration("securityConfiguration")
         .timeout(Duration.minutes(30))
         .build();
 

  • Method Details

    • getArguments

      @Stability(Deprecated) @Deprecated @Nullable default Map<String,String> getArguments()
      Deprecated.
      (deprecated) 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

    • getIntegrationPattern

      @Stability(Deprecated) @Deprecated @Nullable default ServiceIntegrationPattern getIntegrationPattern()
      Deprecated.
      (deprecated) The service integration pattern indicates different ways to start the Glue job.

      The valid value for Glue is either FIRE_AND_FORGET or SYNC.

      Default: FIRE_AND_FORGET

    • getNotifyDelayAfter

      @Stability(Deprecated) @Deprecated @Nullable default Duration getNotifyDelayAfter()
      Deprecated.
      (deprecated) 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

      @Stability(Deprecated) @Deprecated @Nullable default String getSecurityConfiguration()
      Deprecated.
      (deprecated) The name of the SecurityConfiguration structure to be used with this job run.

      This must match the Glue API single-line string pattern.

      Default: - Default configuration set in the job definition

    • getTimeout

      @Stability(Deprecated) @Deprecated @Nullable default Duration getTimeout()
      Deprecated.
      (deprecated) The job run timeout.

      This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. Must be at least 1 minute.

      Default: - Default timeout set in the job definition

    • builder

      @Stability(Deprecated) @Deprecated static RunGlueJobTaskProps.Builder builder()
      Deprecated.
      Returns:
      a RunGlueJobTaskProps.Builder of RunGlueJobTaskProps