namespace Amazon.Lambda.CloudWatchEvents.BatchEvents { /// /// An object representing an AWS Batch job dependency. /// https://docs.aws.amazon.com/batch/latest/APIReference/API_JobDependency.html /// public class JobDependency { /// /// The job ID of the AWS Batch job associated with this dependency. /// public string JobId { get; set; } /// /// The type of the job dependency. /// public string Type { get; set; } } }