Show / Hide Table of Contents

Class JobDependency

An object representing an AWS Batch job dependency.

Inheritance
object
JobDependency
Implements
IJobDependency
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class JobDependency : IJobDependency
Syntax (vb)
Public Class JobDependency Implements IJobDependency
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.StepFunctions.Tasks;

            var jobDependency = new JobDependency {
                JobId = "jobId",
                Type = "type"
            };

Synopsis

Constructors

JobDependency()

An object representing an AWS Batch job dependency.

Properties

JobId

The job ID of the AWS Batch job associated with this dependency.

Type

The type of the job dependency.

Constructors

JobDependency()

An object representing an AWS Batch job dependency.

public JobDependency()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.StepFunctions.Tasks;

            var jobDependency = new JobDependency {
                JobId = "jobId",
                Type = "type"
            };

Properties

JobId

The job ID of the AWS Batch job associated with this dependency.

public string? JobId { get; set; }
Property Value

string

Remarks

Default: - No jobId

Type

The type of the job dependency.

public string? Type { get; set; }
Property Value

string

Remarks

Default: - No type

Implements

IJobDependency
Back to top Generated by DocFX