interface JobDependency
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.StepFunctions.Tasks.JobDependency | 
  Java | software.amazon.awscdk.services.stepfunctions.tasks.JobDependency | 
  Python | aws_cdk.aws_stepfunctions_tasks.JobDependency | 
  TypeScript (source) | @aws-cdk/aws-stepfunctions-tasks » JobDependency | 
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 * as stepfunctions_tasks from '@aws-cdk/aws-stepfunctions-tasks';
const jobDependency: stepfunctions_tasks.JobDependency = {
  jobId: 'jobId',
  type: 'type',
};
Properties
| Name | Type | Description | 
|---|---|---|
| job | string | The job ID of the AWS Batch job associated with this dependency. | 
| type? | string | The type of the job dependency. | 
jobId?
Type:
string
(optional, default: No jobId)
The job ID of the AWS Batch job associated with this dependency.
type?
Type:
string
(optional, default: No type)
The type of the job dependency.

 .NET
 Java
 Python
 TypeScript (