Interface JobDependency
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- JobDependency.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:49.886Z")
@Stability(Stable)
public interface JobDependency
extends software.amazon.jsii.JsiiSerializable
An object representing an AWS Batch job dependency.
 
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.tasks.*;
 JobDependency jobDependency = JobDependency.builder()
         .jobId("jobId")
         .type("type")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forJobDependencystatic final classAn implementation forJobDependency
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getJobIdThe job ID of the AWS Batch job associated with this dependency.Default: - No jobId 
- 
getTypeThe type of the job dependency.Default: - No type 
- 
builder- Returns:
- a JobDependency.BuilderofJobDependency
 
 
-