An object that represents an Batch job dependency.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-pipes/refs/heads/main/json-schema/amazon-eventbridge-pipes-batch-job-dependency-schema.json", "title": "BatchJobDependency", "description": "An object that represents an Batch job dependency.", "type": "object", "properties": { "JobId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The job ID of the Batch job that's associated with this dependency." } ] }, "Type": { "allOf": [ { "$ref": "#/components/schemas/BatchJobDependencyType" }, { "description": "The type of the job dependency." } ] } } }