Interface GlueStartJobRunProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,TaskStateBaseProps
- All Known Implementing Classes:
GlueStartJobRunProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-14T22:22:02.490Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGlueStartJobRunPropsstatic final classAn implementation forGlueStartJobRunProps -
Method Summary
Modifier and TypeMethodDescriptionstatic GlueStartJobRunProps.Builderbuilder()default TaskInputThe job arguments specifically for this run.Glue job name.default DurationAfter a job run starts, the number of minutes to wait before sending a job run delay notification.default StringThe name of the SecurityConfiguration structure to be used with this job run.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.stepfunctions.TaskStateBaseProps
getComment, getCredentials, getHeartbeat, getHeartbeatTimeout, getInputPath, getIntegrationPattern, getOutputPath, getResultPath, getResultSelector, getStateName, getTaskTimeout, getTimeout
-
Method Details
-
getGlueJobName
Glue job name. -
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
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
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
- Returns:
- a
GlueStartJobRunProps.BuilderofGlueStartJobRunProps
-