@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-27T20:28:49.434Z") @Stability(value=Deprecated) @Deprecated public interface RunGlueJobTaskProps extends software.amazon.jsii.JsiiSerializable
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 Map<String,String> |
getArguments()
Deprecated.
|
default ServiceIntegrationPattern |
getIntegrationPattern()
Deprecated.
|
default Duration |
getNotifyDelayAfter()
Deprecated.
|
default String |
getSecurityConfiguration()
Deprecated.
|
default Duration |
getTimeout()
Deprecated.
|
@Stability(value=Deprecated) @Deprecated @Nullable default Map<String,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
@Stability(value=Deprecated) @Deprecated @Nullable default ServiceIntegrationPattern getIntegrationPattern()
The valid value for Glue is either FIRE_AND_FORGET or SYNC.
Default: FIRE_AND_FORGET
@Stability(value=Deprecated) @Deprecated @Nullable default Duration getNotifyDelayAfter()
Must be at least 1 minute.
Default: - Default delay set in the job definition
@Stability(value=Deprecated) @Deprecated @Nullable default String getSecurityConfiguration()
This must match the Glue API single-line string pattern.
Default: - Default configuration set in the job definition
@Stability(value=Deprecated) @Deprecated @Nullable 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
@Stability(value=Deprecated) @Deprecated static RunGlueJobTaskProps.Builder builder()
RunGlueJobTaskProps.Builder of RunGlueJobTaskPropsCopyright © 2022. All rights reserved.