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 SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated.
- 
Method SummaryModifier and TypeMethodDescriptionstatic RunGlueJobTaskProps.Builderbuilder()Deprecated.Deprecated.default ServiceIntegrationPatternDeprecated.default DurationDeprecated.default StringDeprecated.default DurationDeprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getArgumentsDeprecated.(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 
- 
getNotifyDelayAfterDeprecated.(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 
- 
getSecurityConfigurationDeprecated.(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 
- 
getTimeoutDeprecated.(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 
- 
builderDeprecated.- Returns:
- a RunGlueJobTaskProps.BuilderofRunGlueJobTaskProps
 
 
- 
GlueStartJobRun