@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:50.393Z")
@Deprecated
public interface RunGlueJobTaskProps
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();
Modifier and Type | Interface and Description |
---|---|
static class |
RunGlueJobTaskProps.Builder
Deprecated.
|
static class |
RunGlueJobTaskProps.Jsii$Proxy
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static RunGlueJobTaskProps.Builder |
builder()
Deprecated.
|
default java.util.Map<java.lang.String,java.lang.String> |
getArguments()
Deprecated.
|
default ServiceIntegrationPattern |
getIntegrationPattern()
Deprecated.
|
default Duration |
getNotifyDelayAfter()
Deprecated.
|
default java.lang.String |
getSecurityConfiguration()
Deprecated.
|
default Duration |
getTimeout()
Deprecated.
|
@Deprecated default java.util.Map<java.lang.String,java.lang.String> getArguments()
For this job run, they replace the default arguments set in the job definition itself.
Default: - Default arguments set in the job definition
@Deprecated default ServiceIntegrationPattern getIntegrationPattern()
The valid value for Glue is either FIRE_AND_FORGET or SYNC.
Default: FIRE_AND_FORGET
@Deprecated default Duration getNotifyDelayAfter()
Must be at least 1 minute.
Default: - Default delay set in the job definition
@Deprecated default java.lang.String getSecurityConfiguration()
This must match the Glue API single-line string pattern.
Default: - Default configuration set in the job definition
@Deprecated default Duration getTimeout()
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
@Deprecated static RunGlueJobTaskProps.Builder builder()
RunGlueJobTaskProps.Builder
of RunGlueJobTaskProps