@Generated(value="jsii-pacmak/1.57.0 (build f614666)", date="2022-04-22T09:30:51.004Z") @Stability(value=Stable) public interface GlueStartJobRunProps extends software.amazon.jsii.JsiiSerializable, TaskStateBaseProps
Example:
GlueStartJobRun.Builder.create(this, "Task") .glueJobName("my-glue-job") .arguments(TaskInput.fromObject(Map.of( "key", "value"))) .timeout(Duration.minutes(30)) .notifyDelayAfter(Duration.minutes(5)) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
GlueStartJobRunProps.Builder
A builder for
GlueStartJobRunProps |
static class |
GlueStartJobRunProps.Jsii$Proxy
An implementation for
GlueStartJobRunProps |
Modifier and Type | Method and Description |
---|---|
static GlueStartJobRunProps.Builder |
builder() |
default TaskInput |
getArguments()
The job arguments specifically for this run.
|
String |
getGlueJobName()
Glue job name.
|
default Duration |
getNotifyDelayAfter()
After a job run starts, the number of minutes to wait before sending a job run delay notification.
|
default String |
getSecurityConfiguration()
The name of the SecurityConfiguration structure to be used with this job run.
|
getComment, getHeartbeat, getInputPath, getIntegrationPattern, getOutputPath, getResultPath, getResultSelector, getTimeout
@Stability(value=Stable) @NotNull String getGlueJobName()
@Stability(value=Stable) @Nullable default TaskInput getArguments()
For this job run, they replace the default arguments set in the job definition itself.
Default: - Default arguments set in the job definition
@Stability(value=Stable) @Nullable default Duration getNotifyDelayAfter()
Must be at least 1 minute.
Default: - Default delay set in the job definition
@Stability(value=Stable) @Nullable default String getSecurityConfiguration()
This must match the Glue API
Default: - Default configuration set in the job definition
https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-common.html#aws-glue-api-regex-oneLine
@Stability(value=Stable) static GlueStartJobRunProps.Builder builder()
builder
in interface TaskStateBaseProps
GlueStartJobRunProps.Builder
of GlueStartJobRunProps
Copyright © 2022. All rights reserved.