Interface RunGlueJobTaskProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RunGlueJobTaskProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:48.169Z")
@Stability(Deprecated)
@Deprecated
public interface RunGlueJobTaskProps
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) Properties for RunGlueJobTask.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
Deprecated.static final class
Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic RunGlueJobTaskProps.Builder
builder()
Deprecated.Deprecated.default ServiceIntegrationPattern
Deprecated.default Duration
Deprecated.default String
Deprecated.default Duration
Deprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArguments
Deprecated.(deprecated) 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
-
getIntegrationPattern
@Stability(Deprecated) @Deprecated @Nullable default ServiceIntegrationPattern getIntegrationPattern()Deprecated.(deprecated) The service integration pattern indicates different ways to start the Glue job.The valid value for Glue is either FIRE_AND_FORGET or SYNC.
Default: FIRE_AND_FORGET
-
getNotifyDelayAfter
Deprecated.(deprecated) 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
Deprecated.(deprecated) The name of the SecurityConfiguration structure to be used with this job run.This must match the Glue API single-line string pattern.
Default: - Default configuration set in the job definition
-
getTimeout
Deprecated.(deprecated) The job run timeout.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
-
builder
Deprecated.- Returns:
- a
RunGlueJobTaskProps.Builder
ofRunGlueJobTaskProps
-
GlueStartJobRun