Interface GlueStartJobRunProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, TaskStateBaseProps
All Known Implementing Classes:
GlueStartJobRunProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:14.590Z") @Stability(Stable) public interface GlueStartJobRunProps extends software.amazon.jsii.JsiiSerializable, TaskStateBaseProps
Properties for starting an AWS Glue job as a task.

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();
 
  • Method Details

    • getGlueJobName

      @Stability(Stable) @NotNull String getGlueJobName()
      Glue job name.
    • getArguments

      @Stability(Stable) @Nullable default TaskInput getArguments()
      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

    • getNotifyDelayAfter

      @Stability(Stable) @Nullable default Duration getNotifyDelayAfter()
      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(Stable) @Nullable default String getSecurityConfiguration()
      The name of the SecurityConfiguration structure to be used with this job run.

      This must match the Glue API

      Default: - Default configuration set in the job definition

      See Also:
    • builder

      @Stability(Stable) static GlueStartJobRunProps.Builder builder()
      Returns:
      a GlueStartJobRunProps.Builder of GlueStartJobRunProps